Skip to content

Commit a9c650b

Browse files
dtardonbluca
authored andcommitted
execute: free syscall_log hashmap when done
Fixes #35394 (cherry picked from commit c3dc460) (cherry picked from commit f15fd96)
1 parent 37e27ee commit a9c650b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/core/execute.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,7 @@ void exec_context_done(ExecContext *c) {
568568

569569
c->syscall_filter = hashmap_free(c->syscall_filter);
570570
c->syscall_archs = set_free(c->syscall_archs);
571+
c->syscall_log = hashmap_free(c->syscall_log);
571572
c->address_families = set_free(c->address_families);
572573

573574
FOREACH_ARRAY(d, c->directories, _EXEC_DIRECTORY_TYPE_MAX)

0 commit comments

Comments
 (0)