Bug 612408: return NS_ERROR_FAILURE instead of NULL in failure case within mozJSComponentLoader::ImportInto. r=gal

This commit is contained in:
Daniel Holbert 2011-01-20 20:19:19 -08:00
Родитель 88a553a67b
Коммит 94b6b96e92
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1497,7 +1497,7 @@ mozJSComponentLoader::ImportInto(const nsACString & aLocation,
JSAutoEnterCompartment ac;
if (!ac.enter(mContext, mod->global))
return NULL;
return NS_ERROR_FAILURE;
if (!JS_GetProperty(mContext, mod->global,
"EXPORTED_SYMBOLS", &symbols)) {