From e85f37d43c83471a92d992cf4f024898ed95da51 Mon Sep 17 00:00:00 2001 From: EKR Date: Fri, 21 Dec 2012 15:14:06 -0800 Subject: [PATCH] Bug 824097 - Fix uninitialized memory read in nr_stun_server_ctx. r=jesup --- media/mtransport/third_party/nICEr/src/stun/stun_server_ctx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/mtransport/third_party/nICEr/src/stun/stun_server_ctx.c b/media/mtransport/third_party/nICEr/src/stun/stun_server_ctx.c index 5f658deacaf0..b6dcdcdc6fff 100644 --- a/media/mtransport/third_party/nICEr/src/stun/stun_server_ctx.c +++ b/media/mtransport/third_party/nICEr/src/stun/stun_server_ctx.c @@ -193,7 +193,7 @@ int nr_stun_server_process_request(nr_stun_server_ctx *ctx, nr_socket *sock, cha char string[256]; nr_stun_message *req = 0; nr_stun_message *res = 0; - nr_stun_server_client *clnt; + nr_stun_server_client *clnt = 0; nr_stun_server_request info; int error;