]> git.sesse.net Git - vlc/commitdiff
Win32: fix double-free in vlc_idna_to_ascii
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 28 Feb 2013 17:11:45 +0000 (18:11 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 28 Feb 2013 17:11:45 +0000 (18:11 +0100)
Close #8254

src/text/url.c

index f024acfed5da76af675ed5505b7a237f0ee77679..39fb768f986849023af36be00488f5df18e650a6 100644 (file)
@@ -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: