vlc | branch: master | Hugo Beauzée-Luyssen <[email protected]> | Tue Jan 12 10:46:46 2016 +0100| [bd17fa5765683342a5f1aeeb9f9e383931a609d2] | committer: Hugo Beauzée-Luyssen
smb: Fix leak > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bd17fa5765683342a5f1aeeb9f9e383931a609d2 --- modules/access/smb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/access/smb.c b/modules/access/smb.c index e88946c..8d3ffb0 100644 --- a/modules/access/smb.c +++ b/modules/access/smb.c @@ -279,6 +279,7 @@ static void Close( vlc_object_t *p_this ) else #endif smbc_close( p_sys->i_smb ); + free( p_sys ); } /***************************************************************************** _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
