From e8480482ca3fe014f42e6aeb59c734d8af44432e Mon Sep 17 00:00:00 2001 From: Susant Sahani Date: Wed, 20 Jan 2021 13:54:01 +0100 Subject: [PATCH] sd-device: Use hashmap_ensure_put --- src/libsystemd/sd-device/device-monitor.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/libsystemd/sd-device/device-monitor.c b/src/libsystemd/sd-device/device-monitor.c index fd5900704d..72f04ee352 100644 --- a/src/libsystemd/sd-device/device-monitor.c +++ b/src/libsystemd/sd-device/device-monitor.c @@ -732,11 +732,7 @@ _public_ int sd_device_monitor_filter_add_match_subsystem_devtype(sd_device_moni return -ENOMEM; } - r = hashmap_ensure_allocated(&m->subsystem_filter, NULL); - if (r < 0) - return r; - - r = hashmap_put(m->subsystem_filter, s, d); + r = hashmap_ensure_put(&m->subsystem_filter, NULL, s, d); if (r < 0) return r;