1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-03 05:18:09 +03:00

execute: free syscall_log hashmap when done

Fixes #35394

(cherry picked from commit c3dc460b6c)
This commit is contained in:
David Tardon 2024-11-28 13:33:55 +01:00 committed by Zbigniew Jędrzejewski-Szmek
parent 2d975f64d4
commit f15fd96efd

View File

@ -589,6 +589,7 @@ void exec_context_done(ExecContext *c) {
c->syscall_filter = hashmap_free(c->syscall_filter);
c->syscall_archs = set_free(c->syscall_archs);
c->syscall_log = hashmap_free(c->syscall_log);
c->address_families = set_free(c->address_families);
FOREACH_ARRAY(d, c->directories, _EXEC_DIRECTORY_TYPE_MAX)