Fix cut-and-paste bugs in JavaMember_finalize (48304, r=pschwartau).

This commit is contained in:
brendan%mozilla.org 2000-08-10 03:09:41 +00:00
Родитель 1a902d1034
Коммит fe5af9cfa3
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -101,8 +101,8 @@ JavaMember_finalize(JSContext *cx, JSObject *obj)
return;
JS_RemoveRoot(cx, &member_val->method_val);
if (JSVAL_IS_GCTHING(member_val->method_val))
JS_RemoveRoot(cx, &member_val->method_val);
if (JSVAL_IS_GCTHING(member_val->field_val))
JS_RemoveRoot(cx, &member_val->field_val);
JS_free(cx, member_val);
}