Skip to content

Commit 742f323

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)
1 parent 464d495 commit 742f323

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

62266226
c->syscall_filter = hashmap_free(c->syscall_filter);
62276227
c->syscall_archs = set_free(c->syscall_archs);
6228+
c->syscall_log = hashmap_free(c->syscall_log);
62286229
c->address_families = set_free(c->address_families);
62296230

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

0 commit comments

Comments
 (0)