From f52aa657003ce48f1c2d6452a6750149939a471d Mon Sep 17 00:00:00 2001 From: file Date: Fri, 10 Apr 2009 18:02:44 +0000 Subject: 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 --- channels/chan_h323.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'channels/chan_h323.c') 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) { -- cgit v1.2.3