зеркало из 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);
|
||||
size_t len = ida.length();
|
||||
for (size_t i = 0; i < len; i++) {
|
||||
PropertyDescriptor desc;
|
||||
jsid id = ida[i];
|
||||
if (!JS_GetPropertyById(cx, props, id, &vp[1]) || !desc.initialize(cx, id, vp[1]) ||
|
||||
!descs.append(desc)) {
|
||||
PropertyDescriptor *desc = descs.append();
|
||||
if (!desc || !JS_GetPropertyById(cx, props, id, &vp[1]) ||
|
||||
!desc->initialize(cx, id, vp[1])) {
|
||||
return JS_FALSE;
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче