Commit e0a769b2 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

jscript: Initialize this_obj with NULL (Coverity).

parent 02615bb4
......@@ -408,7 +408,7 @@ static HRESULT Function_apply(DispatchEx *dispex, LCID lcid, WORD flags, DISPPAR
FunctionInstance *function;
DISPPARAMS args = {NULL,NULL,0,0};
DWORD argc, i;
IDispatch *this_obj;
IDispatch *this_obj = NULL;
HRESULT hres = S_OK;
TRACE("\n");
......
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