Bug 412811 - "xpconnect-tools build broken" [p=armin76@gentoo.org (Raúl Porcel) r+sr=bsmedberg (NPODB)]

This commit is contained in:
reed@reedloden.com 2008-01-18 01:09:18 -08:00
parent a6dbb66e21
commit cf0a71a1f5
2 changed files with 4 additions and 4 deletions

View File

@ -244,8 +244,8 @@ nsXPCSample_HookerUpper::CreateSampleObjectAtGlobalScope(const char *name, PRInt
return NS_ERROR_FAILURE;
// get the xpconnect native call context
nsCOMPtr<nsIXPCNativeCallContext> callContext;
xpc->GetCurrentNativeCallContext(getter_AddRefs(callContext));
nsAXPCNativeCallContext *callContext = nsnull;
xpc->GetCurrentNativeCallContext(&callContext);
if(!callContext)
return NS_ERROR_FAILURE;

View File

@ -93,8 +93,8 @@ NS_IMETHODIMP nsXPCToolsCompiler::CompileFile(nsILocalFile *aFile, PRBool strict
return NS_ERROR_FAILURE;
// get the xpconnect native call context
nsCOMPtr<nsIXPCNativeCallContext> callContext;
xpc->GetCurrentNativeCallContext(getter_AddRefs(callContext));
nsAXPCNativeCallContext *callContext = nsnull;
xpc->GetCurrentNativeCallContext(&callContext);
if(!callContext)
return NS_ERROR_FAILURE;