jscript: Fixed uninitialized usage of i (Coverity).

This commit is contained in:
Marcus Meissner 2009-12-10 23:56:21 +01:00 committed by Alexandre Julliard
parent 3ff33e9303
commit aaff57da22
1 changed files with 1 additions and 1 deletions

View File

@ -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','('};