jscript: Use prop_put in jsdisp_propput_dontenum.

This commit is contained in:
Jacek Caban 2012-11-05 15:03:35 +01:00 committed by Alexandre Julliard
parent fee495d5fd
commit 7491d480a9
1 changed files with 1 additions and 1 deletions

View File

@ -1271,7 +1271,7 @@ HRESULT jsdisp_propput_dontenum(jsdisp_t *obj, const WCHAR *name, jsval_t val)
if(FAILED(hres))
return hres;
return jsval_copy(val, &prop->u.val);
return prop_put(obj, prop, val, NULL);
}
HRESULT jsdisp_propput_idx(jsdisp_t *obj, DWORD idx, jsval_t val)