Commit 7a83a3d7 authored by Jean-Paul Saman's avatar Jean-Paul Saman

mozilla: oops forgot the duplicate the string.

parent f8a47b97
...@@ -148,7 +148,7 @@ NPError VlcPlugin::init(int argc, char* const argn[], char* const argv[]) ...@@ -148,7 +148,7 @@ NPError VlcPlugin::init(int argc, char* const argn[], char* const argv[])
} }
else if( !strcmp( argn[i], "text" ) ) else if( !strcmp( argn[i], "text" ) )
{ {
psz_text = argv[i]; psz_text = strdup( argv[i] );
} }
else if( !strcmp( argn[i], "autoplay") else if( !strcmp( argn[i], "autoplay")
|| !strcmp( argn[i], "autostart") ) || !strcmp( argn[i], "autostart") )
......
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