From: Antoine Cellerier Date: Wed, 9 Apr 2008 20:54:25 +0000 (+0200) Subject: Fix tiny 9 byte memleak per Authentication-Info header check if the nonce count optio... X-Git-Tag: 0.9.0-test0~1490^2~8 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=770f7ebdf8466be1ef7326f465cc82aece5355ba;p=vlc Fix tiny 9 byte memleak per Authentication-Info header check if the nonce count option was specified. --- diff --git a/modules/access/http.c b/modules/access/http.c index c8c27dd224..a06340590f 100644 --- a/modules/access/http.c +++ b/modules/access/http.c @@ -1870,6 +1870,7 @@ static int AuthCheckReply( access_t *p_access, const char *psz_header, free( psz_qop ); free( psz_rspauth ); free( psz_cnonce ); + free( psz_nc ); return i_ret; }