Skip to content

Commit b1c5472

Browse files
committed
Add missing 'free' call to src/OVAL/probes/probe/worker.c
1 parent cdf1ef8 commit b1c5472

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OVAL/probes/probe/worker.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ static SEXP_t *probe_set_apply_filters(SEXP_t *cobj, SEXP_t *filters)
580580
"Supplied item has an invalid status: %d.", item_status);
581581
r1 = SEXP_list_new(r0, NULL);
582582
cobj = probe_cobj_new(SYSCHAR_FLAG_ERROR, r1, NULL, NULL);
583-
SEXP_vfree(items, item, result_items, r0, r1, NULL);
583+
SEXP_vfree(items, item, result_items, r0, r1, mask, NULL);
584584
return cobj;
585585
}
586586
default:

0 commit comments

Comments
 (0)