Fix some uninitialized memory notices that appeared under valgrind.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@187772 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Joshua Colp
2009-04-10 18:02:44 +00:00
parent df28954a84
commit 8e4b5df187
9 changed files with 32 additions and 32 deletions

View File

@@ -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) {