From c1a373b82e4efe66e1fa4ea68e3d675014fddc6a Mon Sep 17 00:00:00 2001 From: file Date: Mon, 6 Apr 2009 13:23:12 +0000 Subject: [PATCH] Pass the correct value to sizeof when copying address information. (issue #14827) Reported by: pj Patches: 14827.diff uploaded by file (license 11) Tested by: pj git-svn-id: http://svn.digium.com/svn/asterisk/trunk@186563 f38db490-d61c-443f-a65b-d21fe96a405b --- main/rtp_engine.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/rtp_engine.c b/main/rtp_engine.c index fd448b849..51f60dcfd 100644 --- a/main/rtp_engine.c +++ b/main/rtp_engine.c @@ -374,7 +374,7 @@ int ast_rtp_instance_get_local_address(struct ast_rtp_instance *instance, struct if ((address->sin_family != AF_INET) || (address->sin_port != instance->local_address.sin_port) || (address->sin_addr.s_addr != instance->local_address.sin_addr.s_addr)) { - memcpy(address, &instance->local_address, sizeof(address)); + memcpy(address, &instance->local_address, sizeof(*address)); return 1; } @@ -386,7 +386,7 @@ int ast_rtp_instance_get_remote_address(struct ast_rtp_instance *instance, struc if ((address->sin_family != AF_INET) || (address->sin_port != instance->remote_address.sin_port) || (address->sin_addr.s_addr != instance->remote_address.sin_addr.s_addr)) { - memcpy(address, &instance->remote_address, sizeof(address)); + memcpy(address, &instance->remote_address, sizeof(*address)); return 1; }