From: Yu Watanabe Date: Tue, 14 Dec 2021 10:36:34 +0000 (+0900) Subject: polkit: make bus_verify_polkit_async_registry_free() return Hashmap* with NULL X-Git-Tag: v250-rc3~48^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c2f847227bd4d6e53a9c7d4518f82e072808e86;p=thirdparty%2Fsystemd.git polkit: make bus_verify_polkit_async_registry_free() return Hashmap* with NULL --- diff --git a/src/shared/bus-polkit.c b/src/shared/bus-polkit.c index 14122e0876a..bbe04bea37f 100644 --- a/src/shared/bus-polkit.c +++ b/src/shared/bus-polkit.c @@ -408,8 +408,11 @@ int bus_verify_polkit_async( return -EACCES; } -void bus_verify_polkit_async_registry_free(Hashmap *registry) { +Hashmap *bus_verify_polkit_async_registry_free(Hashmap *registry) { #if ENABLE_POLKIT - hashmap_free_with_destructor(registry, async_polkit_query_free); + return hashmap_free_with_destructor(registry, async_polkit_query_free); +#else + assert(hashmap_isempty(registry)); + return hashmap_free(registry); #endif } diff --git a/src/shared/bus-polkit.h b/src/shared/bus-polkit.h index 91a88a28079..e2a3b7eef66 100644 --- a/src/shared/bus-polkit.h +++ b/src/shared/bus-polkit.h @@ -8,4 +8,4 @@ int bus_test_polkit(sd_bus_message *call, int capability, const char *action, const char **details, uid_t good_user, bool *_challenge, sd_bus_error *e); int bus_verify_polkit_async(sd_bus_message *call, int capability, const char *action, const char **details, bool interactive, uid_t good_user, Hashmap **registry, sd_bus_error *error); -void bus_verify_polkit_async_registry_free(Hashmap *registry); +Hashmap *bus_verify_polkit_async_registry_free(Hashmap *registry);