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

jscript: Fixed uninitialized usage of i (Coverity).

parent 3ff33e93
......@@ -669,7 +669,7 @@ static HRESULT construct_function(script_ctx_t *ctx, DISPPARAMS *dp, jsexcept_t
parser_ctx_t *parser;
DispatchEx *function;
BSTR *params = NULL;
int i, j=0;
int i=0, j=0;
HRESULT hres = S_OK;
static const WCHAR function_anonymousW[] = {'f','u','n','c','t','i','o','n',' ','a','n','o','n','y','m','o','u','s','('};
......
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