From 0b83974b9105bef58de6272adc8c8b673687192c Mon Sep 17 00:00:00 2001 From: Susant Sahani Date: Mon, 18 Jan 2021 11:23:38 +0100 Subject: [PATCH] install: use ordered_hashmap_ensure_put --- src/shared/install.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/shared/install.c b/src/shared/install.c index 302497a965b..e70fa450226 100644 --- a/src/shared/install.c +++ b/src/shared/install.c @@ -1041,10 +1041,6 @@ static int install_info_add( return 0; } - r = ordered_hashmap_ensure_allocated(&c->will_process, &string_hash_ops); - if (r < 0) - return r; - i = new(UnitFileInstallInfo, 1); if (!i) return -ENOMEM; @@ -1068,7 +1064,7 @@ static int install_info_add( } } - r = ordered_hashmap_put(c->will_process, i->name, i); + r = ordered_hashmap_ensure_put(&c->will_process, &string_hash_ops, i->name, i); if (r < 0) goto fail; -- 2.47.3