mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
Bug 599198 - Content process throws several catastrophic assertions while initializing XPCOM (bandaide) r=bsmedberg a=blocking-fennec
This commit is contained in:
parent
0b107990c4
commit
2acbdf0768
@ -86,6 +86,29 @@ ScopedXREEmbed::Start()
|
||||
localFile = do_QueryInterface(parent);
|
||||
NS_ENSURE_TRUE(localFile,);
|
||||
|
||||
#ifdef OS_MACOSX
|
||||
rv = localFile->GetParent(getter_AddRefs(parent));
|
||||
if (NS_FAILED(rv))
|
||||
return;
|
||||
|
||||
localFile = do_QueryInterface(parent);
|
||||
NS_ENSURE_TRUE(localFile,);
|
||||
|
||||
rv = localFile->GetParent(getter_AddRefs(parent));
|
||||
if (NS_FAILED(rv))
|
||||
return;
|
||||
|
||||
localFile = do_QueryInterface(parent);
|
||||
NS_ENSURE_TRUE(localFile,);
|
||||
|
||||
rv = localFile->GetParent(getter_AddRefs(parent));
|
||||
if (NS_FAILED(rv))
|
||||
return;
|
||||
|
||||
localFile = do_QueryInterface(parent);
|
||||
NS_ENSURE_TRUE(localFile,);
|
||||
#endif
|
||||
|
||||
rv = XRE_InitEmbedding2(localFile, localFile, nsnull);
|
||||
if (NS_FAILED(rv))
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user