зеркало из https://github.com/mozilla/pjs.git
Bug 492840 - Fix a conflict with myself in the previous push. Aaargh...
This commit is contained in:
Родитель
fea2830de0
Коммит
d8c3722d5e
|
@ -2802,10 +2802,10 @@ obj_create(JSContext *cx, uintN argc, jsval *vp)
|
||||||
AutoDescriptorArray descs(cx);
|
AutoDescriptorArray descs(cx);
|
||||||
size_t len = ida.length();
|
size_t len = ida.length();
|
||||||
for (size_t i = 0; i < len; i++) {
|
for (size_t i = 0; i < len; i++) {
|
||||||
PropertyDescriptor desc;
|
|
||||||
jsid id = ida[i];
|
jsid id = ida[i];
|
||||||
if (!JS_GetPropertyById(cx, props, id, &vp[1]) || !desc.initialize(cx, id, vp[1]) ||
|
PropertyDescriptor *desc = descs.append();
|
||||||
!descs.append(desc)) {
|
if (!desc || !JS_GetPropertyById(cx, props, id, &vp[1]) ||
|
||||||
|
!desc->initialize(cx, id, vp[1])) {
|
||||||
return JS_FALSE;
|
return JS_FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче