aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_h323.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-10 18:02:44 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-10 18:02:44 +0000
commitf52aa657003ce48f1c2d6452a6750149939a471d (patch)
tree0541c92580c50ebd237c5e8f81543b5ec71bb515 /channels/chan_h323.c
parent250420f44fb9808e47dcbca76d2eec3ed4cf9243 (diff)
Fix some uninitialized memory notices that appeared under valgrind.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@187772 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_h323.c')
-rw-r--r--channels/chan_h323.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_h323.c b/channels/chan_h323.c
index 0445497b4..3f56fc29d 100644
--- a/channels/chan_h323.c
+++ b/channels/chan_h323.c
@@ -3163,8 +3163,8 @@ static int oh323_set_rtp_peer(struct ast_channel *chan, struct ast_rtp_instance
{
/* XXX Deal with Video */
struct oh323_pvt *pvt;
- struct sockaddr_in them;
- struct sockaddr_in us;
+ struct sockaddr_in them = { 0, };
+ struct sockaddr_in us = { 0, };
char *mode;
if (!rtp) {