fix a return value
This commit is contained in:
dprice%netscape.com 2002-05-14 05:35:02 +00:00
Родитель 40ddc16ed4
Коммит b0b4dd6a14
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1167,8 +1167,8 @@ InstallGetWinRegistry(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsv
// public int GetWinRegistry (void); // public int GetWinRegistry (void);
if(NS_OK != nativeThis->GetWinRegistry(cx, &WinRegClass, rval)) if(NS_OK != nativeThis->GetWinRegistry(cx, &WinRegClass, rval))
{ {
*rval = INT_TO_JSVAL(nsInstall::UNEXPECTED_ERROR); *rval = JSVAL_NULL;
return JSVAL_NULL; return JS_TRUE;
} }
#endif #endif