Skip to content

Commit a748f18

Browse files
authored
Merge pull request #1211 from mildass/fix_probe_worker_memory_leaks_maint-1.2
Add missing 'free' calls to src/OVAL/probes/probe/worker.c (maint-1.2 branch)
2 parents b2d6c17 + b1c5472 commit a748f18

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)