bug 534863: the plugin DLL path needs to be quoted on windows. irc r=bent

This commit is contained in:
Chris Jones 2009-12-15 17:10:41 -06:00
parent 5da2f562e0
commit 63b57abda9

View File

@ -67,7 +67,11 @@ bool
PluginProcessParent::Launch()
{
std::vector<std::string> args;
#if defined(XP_WIN)
args.push_back("\""+ mPluginFilePath +"\"");
#else
args.push_back(mPluginFilePath);
#endif
return SyncLaunch(args);
}