Commit f5955234 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

vbscript: Don't leak IEnumVARIANT in interp_enumnext.

parent a2438ce8
......@@ -1203,7 +1203,7 @@ static HRESULT interp_enumnext(exec_ctx_t *ctx)
if(do_continue) {
ctx->instr++;
}else {
stack_pop(ctx);
stack_popn(ctx, 1);
instr_jmp(ctx, loop_end);
}
return S_OK;
......
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