summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2016-06-22 09:37:23 -0600
committerGeorge Joseph <gjoseph@digium.com>2016-06-22 12:28:58 -0600
commitbc69b033167c0fe6f2cfb71e39aaa2c73d60fa32 (patch)
treeb6fa2be6473aff68bd3d23c8f61263aad7a2b4ff /channels
parentd155d8274760b6310abf7bea682036d5356b0e85 (diff)
chan_unistim: Fix memcpy in get_to_address
A code block only enabled when HAVE_PKTINFO is not defined (FreeBSD) was using a pointer to a pointer as the destination of a memcpy and a '&' instead of '*' in the sizeof. ASTERISK-26138 #close Change-Id: Id4927ff256c0e470bdf7bcfc025146a2f656e708
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_unistim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_unistim.c b/channels/chan_unistim.c
index db4720d1a..c48f0f55d 100644
--- a/channels/chan_unistim.c
+++ b/channels/chan_unistim.c
@@ -1021,7 +1021,7 @@ static int get_to_address(int fd, struct sockaddr_in *toAddr)
memcpy(&toAddr->sin_addr, &ip_msg.address, sizeof(struct in_addr));
return err;
#else
- memcpy(&toAddr, &public_ip, sizeof(&toAddr));
+ memcpy(toAddr, &public_ip, sizeof(*toAddr));
return 0;
#endif
}