Bug 620206 - Make nsFrameMessageManager::ReceiveMessage return consistent error values.

r=smaug a=bsmedberg
This commit is contained in:
Josh Matthews 2011-02-08 17:05:11 -05:00
Родитель 2004971086
Коммит 98a1a3c920
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -378,7 +378,7 @@ nsFrameMessageManager::ReceiveMessage(nsISupports* aTarget,
// create array even if len == 0.
aObjectsArray = JS_NewArrayObject(ctx, 0, NULL);
if (!aObjectsArray) {
return false;
return NS_ERROR_OUT_OF_MEMORY;
}
}
@ -414,7 +414,7 @@ nsFrameMessageManager::ReceiveMessage(nsISupports* aTarget,
JSAutoEnterCompartment ac;
if (!ac.enter(ctx, object))
return PR_FALSE;
return NS_ERROR_FAILURE;
jsval funval = JSVAL_VOID;
if (JS_ObjectIsFunction(ctx, object)) {