intl: Do not return NULL on asprintf failure in gettext [BZ #24018]

Fixes commit 9695dd0c93 ("DCIGETTEXT:
Use getcwd, asprintf to construct absolute pathname").

(cherry picked from commit 8c1aafc1f3)
This commit is contained in:
Florian Weimer 2019-01-02 16:46:12 +01:00
parent 94417f6c26
commit a5bd0ba192
3 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2019-01-02 Florian Weimer <fweimer@redhat.com>
[BZ #24018]
* intl/dcigettext.c (DCIGETTEXT): Do not return NULL on asprintf
failure.
2018-12-31 Florian Weimer <fw@deneb.enyo.de>
[BZ #24027]

1
NEWS
View File

@ -163,6 +163,7 @@ The following bugs are resolved with this release:
[23579] libc: Errors misreported in preadv2
[23709] Fix CPU string flags for Haswell-type CPUs
[23927] Linux if_nametoindex() does not close descriptor (CVE-2018-19591)
[24018] gettext may return NULL
[24027] malloc: Integer overflow in realloc
Version 2.26

View File

@ -635,7 +635,7 @@ DCIGETTEXT (const char *domainname, const char *msgid1, const char *msgid2,
int ret = __asprintf (&xdirname, "%s/%s", cwd, dirname);
free (cwd);
if (ret < 0)
return NULL;
goto return_untranslated;
dirname = xdirname;
}
#ifndef IN_LIBGLOCALE