Commit ab019807 authored by Antoine Cellerier's avatar Antoine Cellerier

* luaplaylist.c: initialize p_sys->psz_filename to NULL.

parent c1d352b6
...@@ -286,6 +286,7 @@ int E_(Import_LuaPlaylist)( vlc_object_t *p_this ) ...@@ -286,6 +286,7 @@ int E_(Import_LuaPlaylist)( vlc_object_t *p_this )
free( psz_dir ); free( psz_dir );
return VLC_ENOMEM; return VLC_ENOMEM;
} }
p_demux->p_sys->psz_filename = NULL;
p_demux->pf_control = Control; p_demux->pf_control = Control;
p_demux->pf_demux = Demux; p_demux->pf_demux = Demux;
......
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