From 94302298d44b00b30806cf4dae09d60ab76cdbcc Mon Sep 17 00:00:00 2001 From: Stephen Pohl Date: Thu, 2 Oct 2014 13:19:34 -0400 Subject: [PATCH] Bug 1075691: The GreD for XPCOM-using subprocesses on OSX needs to change due to the v2 signature changes. r=bsmedberg --- ipc/glue/ScopedXREEmbed.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ipc/glue/ScopedXREEmbed.cpp b/ipc/glue/ScopedXREEmbed.cpp index 544de73150f3..342decf42b34 100644 --- a/ipc/glue/ScopedXREEmbed.cpp +++ b/ipc/glue/ScopedXREEmbed.cpp @@ -90,6 +90,11 @@ ScopedXREEmbed::Start() localFile = do_QueryInterface(parent); NS_ENSURE_TRUE_VOID(localFile); + + rv = localFile->SetNativeLeafName(NS_LITERAL_CSTRING("Resources")); + if (NS_FAILED(rv)) { + return; + } } #endif