vbscript: Don't leak IEnumVARIANT in interp_enumnext.

Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Piotr Caban 2017-11-08 18:11:56 +01:00 committed by Alexandre Julliard
parent a2438ce810
commit f595523413
1 changed files with 1 additions and 1 deletions

View File

@ -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;