Commit 6ead52bb authored by Rémi Duraffort's avatar Rémi Duraffort

mozilla: fix compilation.

parent ef74dd1d
...@@ -352,16 +352,7 @@ NPError VlcPlugin::init(int argc, char* const argn[], char* const argv[]) ...@@ -352,16 +352,7 @@ NPError VlcPlugin::init(int argc, char* const argn[], char* const argv[])
} }
} }
libvlc_exception_t ex; libvlc_instance = libvlc_new(ppsz_argc, ppsz_argv);
libvlc_exception_init(&ex);
libvlc_instance = libvlc_new(ppsz_argc, ppsz_argv, &ex);
if( libvlc_exception_raised(&ex) )
{
libvlc_exception_clear(&ex);
return NPERR_GENERIC_ERROR;
}
libvlc_media_list = libvlc_media_list_new(libvlc_instance); libvlc_media_list = libvlc_media_list_new(libvlc_instance);
/* /*
......
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