mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-12 18:50:08 +00:00
bug 534863: the plugin DLL path needs to be quoted on windows. irc r=bent
This commit is contained in:
parent
5da2f562e0
commit
63b57abda9
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user