我试图从FireBreath-Plugin中启动notepad.exe,但当我调用适当的API-Function(这次仅用于测试的"echo")时,它会在FireFox中与"错误调用NPObject方法!"一起崩溃。
这是我的代码:
FB::variant redtestAPI::echo(const FB::variant& msg)
{
STARTUPINFO si;
PROCESS_INFORMATION pi;
ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi) );
// Start the child process.
if( !CreateProcess( NULL, // No module name (use command line)
L"notepad.exe", // Filename
NULL, // Process handle not inheritable
NULL, // Thread handle not inheritable
FALSE, // Set handle inheritance to FALSE
0, // No creation flags
NULL, // Use parent's environment block
NULL, // Use parent's starting directory
&si, // Pointer to STARTUPINFO structure
&pi ) // Pointer to PROCESS_INFORMATION structure
) {
return "error";
}
return "foo";
}
我做错了什么?我为Flash找到了一些关于此错误消息的安全解决方案(-->System.security.allowDomain),但没有为FireBreath找到。我做错了什么?
提前感谢
heinob
FireBreath本身并没有帮助或阻止CreateProcess运行;它真的崩溃还是只是抛出一个javascript异常?如果插件真的崩溃了,那么你的调用就崩溃了,否则很可能是一个未捕获的异常。
这里没有任何FireBreath的具体内容需要您了解;只需附加一个调试器,设置一个断点,然后逐步查看发生了什么。