vbscript: Add missing error handling in interp_jmp_false.
This commit is contained in:
parent
b87134a4e1
commit
d685a07f22
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue