From ade68041bf1e2fc377ea329fe0709b920b94fa6d Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 30 Sep 2023 21:53:59 +0200 Subject: [PATCH] intl: Fix compilation error from previous commit. * gettext-runtime/intl/loadmsgcat.c (_nl_load_domain): Use free() instead of freea(). --- gettext-runtime/intl/loadmsgcat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gettext-runtime/intl/loadmsgcat.c b/gettext-runtime/intl/loadmsgcat.c index 56ed15e99..14f009bb2 100644 --- a/gettext-runtime/intl/loadmsgcat.c +++ b/gettext-runtime/intl/loadmsgcat.c @@ -993,7 +993,7 @@ _nl_load_domain (struct loaded_l10nfile *domain_file, && static_segments[segsize - 1] == '\0')) { /* Invalid. */ - freea (sysdep_segment_values); + free (sysdep_segment_values); goto invalid; } } -- 2.47.3