Commit 4d7465b4 authored by Felix Paul Kühne's avatar Felix Paul Kühne

lua: fix self-introduced leak

refs b2cce4d8
parent 72d73d6c
......@@ -554,8 +554,8 @@ int vlclua_playlist_add_internal( vlc_object_t *p_this, lua_State *L,
EnsureUTF8( psz_oldurl );
msg_Dbg( p_this, "meta-URL: %s", psz_oldurl );
input_item_SetURL ( p_input, psz_oldurl );
free( psz_oldurl );
}
free( psz_oldurl );
free( url );
/* copy the psz_name to the meta data, if "Title" is still empty */
......
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