[vlc-devel] commit: Fix tiny 9 byte memleak per Authentication-Info header check if the nonce count option was specified . (Antoine Cellerier )
git version control
git at videolan.org
Wed Apr 9 23:55:11 CEST 2008
vlc | branch: master | Antoine Cellerier <dionoea at videolan.org> | Wed Apr 9 22:54:25 2008 +0200| [770f7ebdf8466be1ef7326f465cc82aece5355ba]
Fix tiny 9 byte memleak per Authentication-Info header check if the nonce count option was specified.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=770f7ebdf8466be1ef7326f465cc82aece5355ba
---
modules/access/http.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/modules/access/http.c b/modules/access/http.c
index c8c27dd..a063405 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;
}
More information about the vlc-devel
mailing list