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

@@ -577,7 +577,7 @@ static int jingle_create_candidates(struct jingle *client, struct jingle_pvt *p,
struct jingle_candidate *tmp;
struct aji_client *c = client->connection;
struct jingle_candidate *ours1 = NULL, *ours2 = NULL;
struct sockaddr_in sin;
struct sockaddr_in sin = { 0, };
struct sockaddr_in dest;
struct in_addr us;
struct in_addr externaddr;