Commit 1aa62364 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

vbscript: Avoid memory leak in compile_select_statement (coverity).

parent 5010f093
......@@ -836,7 +836,7 @@ static HRESULT compile_select_statement(compile_ctx_t *ctx, select_statement_t *
hres = push_instr_addr(ctx, OP_jmp, end_label);
if(FAILED(hres))
return hres;
break;
}
heap_free(case_labels);
......
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