Commit e64df62e authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

jscript: Check the correct variable for the error condition (Smatch).

parent ea71c9e5
......@@ -363,7 +363,7 @@ static HRESULT array_to_args(DispatchEx *arg_array, LCID lcid, jsexcept_t *ei, I
return hres;
argv = heap_alloc(length * sizeof(VARIANT));
if(FAILED(hres))
if(!argv)
return E_OUTOFMEMORY;
for(i=0; i<length; i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment