Commit 727c4ed1 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* Fix a heavy crash due to free instead of LocaleFree() in mkv module

parent c57638dd
...@@ -1496,8 +1496,8 @@ static int Open( vlc_object_t * p_this ) ...@@ -1496,8 +1496,8 @@ static int Open( vlc_object_t * p_this )
if (p_src_dir != NULL) if (p_src_dir != NULL)
{ {
char *psz_file; const char *psz_file;
while ((psz_file = (char *)utf8_readdir(p_src_dir)) != NULL) while ((psz_file = utf8_readdir(p_src_dir)) != NULL)
{ {
if (strlen(psz_file) > 4) if (strlen(psz_file) > 4)
{ {
...@@ -1546,7 +1546,7 @@ static int Open( vlc_object_t * p_this ) ...@@ -1546,7 +1546,7 @@ static int Open( vlc_object_t * p_this )
} }
} }
} }
free (psz_file); LocaleFree (psz_file);
} }
vlc_closedir_wrapper( p_src_dir ); vlc_closedir_wrapper( p_src_dir );
} }
......
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