Commit 59d3fb9c authored by Rémi Duraffort's avatar Rémi Duraffort

Fix use of uninitialized value.

parent 77720949
...@@ -831,7 +831,6 @@ static void AllocateAllPlugins( vlc_object_t *p_this, module_bank_t *p_bank ) ...@@ -831,7 +831,6 @@ static void AllocateAllPlugins( vlc_object_t *p_this, module_bank_t *p_bank )
if(res == -1 || res >= PATH_MAX) if(res == -1 || res >= PATH_MAX)
{ {
vlc_array_destroy( arraypaths ); vlc_array_destroy( arraypaths );
free(path);
return; return;
} }
#endif #endif
......
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