Skip to content

Commit a47e621

Browse files
dtardonbluca
authored andcommitted
execute: free syscall_log hashmap when done
Fixes #35394 (cherry picked from commit c3dc460) (cherry picked from commit f15fd96) (cherry picked from commit a9c650b) (cherry picked from commit 742f323) (cherry picked from commit 8a1bed1)
1 parent e226443 commit a47e621

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
@@ -5427,6 +5427,7 @@ void exec_context_done(ExecContext *c) {
54275427

54285428
c->syscall_filter = hashmap_free(c->syscall_filter);
54295429
c->syscall_archs = set_free(c->syscall_archs);
5430+
c->syscall_log = hashmap_free(c->syscall_log);
54305431
c->address_families = set_free(c->address_families);
54315432

54325433
for (ExecDirectoryType t = 0; t < _EXEC_DIRECTORY_TYPE_MAX; t++)

0 commit comments

Comments
 (0)