From e853f1076cd79cde8927b8c9fcd199143faf1bde Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Wed, 17 Sep 2008 11:29:50 +0900 Subject: [PATCH] jscript: Fix the uninitialized variable warning. --- dlls/jscript/engine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/jscript/engine.c b/dlls/jscript/engine.c index b700d3316cc..2b663d3d2f5 100644 --- a/dlls/jscript/engine.c +++ b/dlls/jscript/engine.c @@ -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;