diff options
author | Lennart Poettering <lennart@poettering.net> | 2024-01-04 15:15:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-04 15:15:45 +0100 |
commit | 96fc8cab2a8cf2a10de7682dd802444f9e322ffa (patch) | |
tree | 3fa036526d8374d5defb61fc9afc1704888d1174 /src/home | |
parent | update-man-rules: skip over standard-conf.xml (diff) | |
parent | varlink: avoid logging content of message if it contains sensitive data (diff) | |
download | systemd-96fc8cab2a8cf2a10de7682dd802444f9e322ffa.tar.xz systemd-96fc8cab2a8cf2a10de7682dd802444f9e322ffa.zip |
Merge pull request #30578 from bluca/polkit-varlink
varlink: add glue to allow authenticating varlink connections via polkit
Diffstat (limited to 'src/home')
-rw-r--r-- | src/home/homed-manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/home/homed-manager.c b/src/home/homed-manager.c index c4525310fc..94b2ea5181 100644 --- a/src/home/homed-manager.c +++ b/src/home/homed-manager.c @@ -268,7 +268,7 @@ Manager* manager_free(Manager *m) { (void) home_wait_for_worker(h); m->bus = sd_bus_flush_close_unref(m->bus); - m->polkit_registry = bus_verify_polkit_async_registry_free(m->polkit_registry); + m->polkit_registry = hashmap_free(m->polkit_registry); m->device_monitor = sd_device_monitor_unref(m->device_monitor); |