jscript: Fixed a typo.

Spotted by Michael Stefaniuc.
This commit is contained in:
Jacek Caban 2008-09-24 01:48:57 +02:00 committed by Alexandre Julliard
parent 98f2dfee9c
commit 87e2c25549
1 changed files with 2 additions and 1 deletions

View File

@ -951,7 +951,8 @@ HRESULT with_statement_eval(exec_ctx_t *ctx, statement_t *_stat, return_type_t *
hres = scope_push(ctx->scope_chain, obj, &ctx->scope_chain);
jsdisp_release(obj);
if(FAILED(hres));
if(FAILED(hres))
return hres;
hres = stat_eval(ctx, stat->statement, rt, ret);