Commit e1d3ebea authored by Laurent Aimar's avatar Laurent Aimar

Use libvlc_playlist_add_extended_untrusted in mozilla plugin.

parent 059a3399
......@@ -1481,12 +1481,12 @@ RuntimeNPObject::InvokeResult LibvlcPlaylistNPObject::invoke(int index, const NP
}
}
int item = libvlc_playlist_add_extended(p_plugin->getVLC(),
url,
name,
i_options,
const_cast<const char **>(ppsz_options),
&ex);
int item = libvlc_playlist_add_extended_untrusted(p_plugin->getVLC(),
url,
name,
i_options,
const_cast<const char **>(ppsz_options),
&ex);
free(url);
free(name);
for( int i=0; i< i_options; ++i )
......
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