]> git.sesse.net Git - vlc/commitdiff
Fix tiny 9 byte memleak per Authentication-Info header check if the nonce count optio...
authorAntoine Cellerier <dionoea@videolan.org>
Wed, 9 Apr 2008 20:54:25 +0000 (22:54 +0200)
committerAntoine Cellerier <dionoea@videolan.org>
Wed, 9 Apr 2008 20:54:25 +0000 (22:54 +0200)
modules/access/http.c

index c8c27dd224e474c047644dca9128d8b0469daa1e..a06340590fe6501adb74cdbd800e01d81481fdc5 100644 (file)
@@ -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;
 }