vlc | branch: master | Jean-Baptiste Kempf <[email protected]> | Thu Feb 28 18:11:45 2013 +0100| [d09b6f756f1f6fa0831168d7608007c10dff0208] | committer: Jean-Baptiste Kempf
Win32: fix double-free in vlc_idna_to_ascii Close #8254 > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d09b6f756f1f6fa0831168d7608007c10dff0208 --- src/text/url.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/text/url.c b/src/text/url.c index f024acf..39fb768 100644 --- a/src/text/url.c +++ b/src/text/url.c @@ -525,8 +525,6 @@ static char *vlc_idna_to_ascii (const char *idn) free (buf); goto error; } - free (wide); - ret = FromWide (buf); free (buf); error: _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
