Commit 7aaf597d authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

vbscript: Fixed a leak.

parent 20108162
......@@ -873,8 +873,10 @@ static HRESULT compile_select_statement(compile_ctx_t *ctx, select_statement_t *
if(FAILED(hres))
break;
if(!emit_catch_jmp(ctx, 0, case_labels[i]))
return E_OUTOFMEMORY;
if(!emit_catch_jmp(ctx, 0, case_labels[i])) {
hres = E_OUTOFMEMORY;
break;
}
}
}
......
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