jscript: Fix the uninitialized variable warning.

This commit is contained in:
Dmitry Timoshkov 2008-09-17 11:29:50 +09:00 committed by Alexandre Julliard
parent ef221478f0
commit e853f1076c
1 changed files with 1 additions and 1 deletions

View File

@ -533,7 +533,7 @@ HRESULT block_statement_eval(exec_ctx_t *ctx, statement_t *_stat, return_type_t
static HRESULT variable_list_eval(exec_ctx_t *ctx, variable_declaration_t *var_list, jsexcept_t *ei)
{
variable_declaration_t *iter;
HRESULT hres;
HRESULT hres = E_FAIL;
for(iter = var_list; iter; iter = iter->next) {
VARIANT val;