From 0da4f6fa1672ac79b51553571034ae5d382206db Mon Sep 17 00:00:00 2001 From: "Byron Campen [:bwc]" Date: Wed, 11 Jun 2014 10:43:04 -0700 Subject: [PATCH] Bug 1008789: Init username to 0, just in case. r=drno --- media/mtransport/third_party/nICEr/src/stun/stun_client_ctx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/mtransport/third_party/nICEr/src/stun/stun_client_ctx.c b/media/mtransport/third_party/nICEr/src/stun/stun_client_ctx.c index 9a90e2fdef8d..fa60de519bef 100644 --- a/media/mtransport/third_party/nICEr/src/stun/stun_client_ctx.c +++ b/media/mtransport/third_party/nICEr/src/stun/stun_client_ctx.c @@ -426,7 +426,7 @@ int nr_stun_client_process_response(nr_stun_client_ctx *ctx, UCHAR *msg, int len { int r,_status; char string[256]; - char *username; + char *username = 0; Data *password = 0; nr_stun_message_attribute *attr; nr_transport_addr *mapped_addr = 0;