mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-23 21:19:09 +00:00
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: https://origsvn.digium.com/svn/asterisk/trunk@186563 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user