Commit 87e2c255 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

jscript: Fixed a typo.

Spotted by Michael Stefaniuc.
parent 98f2dfee
...@@ -951,7 +951,8 @@ HRESULT with_statement_eval(exec_ctx_t *ctx, statement_t *_stat, return_type_t * ...@@ -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); hres = scope_push(ctx->scope_chain, obj, &ctx->scope_chain);
jsdisp_release(obj); jsdisp_release(obj);
if(FAILED(hres)); if(FAILED(hres))
return hres;
hres = stat_eval(ctx, stat->statement, rt, ret); hres = stat_eval(ctx, stat->statement, rt, ret);
......
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