From 065058e63b566e21af737150ecd12bff57b97124 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Tue, 14 Jun 2022 09:04:00 +0900 Subject: [PATCH] locale-util: fix memleak on failure --- src/basic/locale-util.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/basic/locale-util.c b/src/basic/locale-util.c index cb99641263..3fce1a55f6 100644 --- a/src/basic/locale-util.c +++ b/src/basic/locale-util.c @@ -160,7 +160,7 @@ static int add_locales_from_archive(Set *locales) { return r; } -static int add_locales_from_libdir (Set *locales) { +static int add_locales_from_libdir(Set *locales) { _cleanup_closedir_ DIR *dir = NULL; int r; @@ -187,7 +187,7 @@ static int add_locales_from_libdir (Set *locales) { } int get_locales(char ***ret) { - _cleanup_set_free_ Set *locales = NULL; + _cleanup_set_free_free_ Set *locales = NULL; _cleanup_strv_free_ char **l = NULL; int r; @@ -207,6 +207,9 @@ int get_locales(char ***ret) { if (!l) return -ENOMEM; + /* Now, all elements are owned by strv 'l'. Hence, do not call set_free_free(). */ + locales = set_free(locales); + r = getenv_bool("SYSTEMD_LIST_NON_UTF8_LOCALES"); if (r == -ENXIO || r == 0) { char **a, **b;