Commit 808472c5 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Coverity spotted this as a resource-leak, even though it amounts to

counting deck-chairs on the Titanic.
parent be7a7f99
......@@ -1224,6 +1224,7 @@ vcc_expr_bin_bool(struct vcc *tl, struct expr **e, vcc_type_t fmt,
"'%s' must be followed by BOOL,"
" found %s.\n", tokstr, vcc_utype(e2->fmt));
vcc_ErrWhere2(tl, tk, tl->t);
vcc_delete_expr(e2);
return;
}
bprintf(buf, "\v1\v-\n%s\v+\n\v2", tokstr);
......
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