Commit c349af14 authored by Laurent Aimar's avatar Laurent Aimar

Use libvlc_playlist_add_extended_untrusted in activex plugin.

parent e1d3ebea
...@@ -535,7 +535,7 @@ HRESULT VLCPlugin::getVLC(libvlc_instance_t** pp_libvlc) ...@@ -535,7 +535,7 @@ HRESULT VLCPlugin::getVLC(libvlc_instance_t** pp_libvlc)
options[i_options++] = timeBuffer; options[i_options++] = timeBuffer;
} }
// add default target to playlist // add default target to playlist
libvlc_playlist_add_extended(_p_libvlc, psz_mrl, NULL, i_options, options, NULL); libvlc_playlist_add_extended_untrusted(_p_libvlc, psz_mrl, NULL, i_options, options, NULL);
CoTaskMemFree(psz_mrl); CoTaskMemFree(psz_mrl);
} }
} }
......
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