Bug 824097 - Fix uninitialized memory read in nr_stun_server_ctx. r=jesup

This commit is contained in:
EKR 2012-12-21 15:14:06 -08:00
Родитель 54e7b9d874
Коммит e85f37d43c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;