Commit d09b6f75 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Win32: fix double-free in vlc_idna_to_ascii

Close #8254
parent e8ad54b1
...@@ -525,8 +525,6 @@ static char *vlc_idna_to_ascii (const char *idn) ...@@ -525,8 +525,6 @@ static char *vlc_idna_to_ascii (const char *idn)
free (buf); free (buf);
goto error; goto error;
} }
free (wide);
ret = FromWide (buf); ret = FromWide (buf);
free (buf); free (buf);
error: error:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment