vbscript: Add missing error handling in interp_jmp_false.

oldstable
Gerald Pfeifer 2011-09-13 23:45:23 +02:00 committed by Alexandre Julliard
parent b87134a4e1
commit d685a07f22
1 changed files with 3 additions and 0 deletions

View File

@ -391,6 +391,9 @@ static HRESULT interp_jmp_false(exec_ctx_t *ctx)
TRACE("%u\n", arg);
hres = stack_pop_val(ctx, &val);
if(FAILED(hres))
return hres;
if(V_VT(val.v) != VT_BOOL) {
FIXME("unsupported for %s\n", debugstr_variant(val.v));
release_val(&val);