diff options
author | Arjun Shankar <arjun@redhat.com> | 2018-11-05 15:45:07 +0100 |
---|---|---|
committer | Arjun Shankar <arjun@redhat.com> | 2018-11-05 15:45:07 +0100 |
commit | 6d6ee04622fd77908936250b1f632c2b4388ee78 (patch) | |
tree | ffcfa28ea203337d30aac76cfd03d37e912c5178 /ChangeLog | |
parent | bd3b0fbae33a9a4cc5e2daf049443d5cf03d4251 (diff) | |
download | glibc-6d6ee04622fd77908936250b1f632c2b4388ee78.tar glibc-6d6ee04622fd77908936250b1f632c2b4388ee78.tar.gz glibc-6d6ee04622fd77908936250b1f632c2b4388ee78.tar.bz2 glibc-6d6ee04622fd77908936250b1f632c2b4388ee78.zip |
Unconditionally call __gconv_get_path when reading iconv configuration
__gconv_read_conf is only ever called once during the program's lifetime.
This means that __gconv_path_elem is always uninitialized when the function
begins executing. __gconv_get_path has an assert to ensure that this
expected runtime behaviour is always exhibited. Given this, checking for a
NULL value before calling __gconv_get_path is unnecessary. This commit
drops the condition and calls __gconv_get_path unconditionally.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2018-11-05 Arjun Shankar <arjun@redhat.com> + + * iconv/gconv_conf.c (__gconv_read_conf): Remove NULL check for + __gconv_path_elem and call __gconv_get_path unconditionally. + 2018-11-05 Andreas Schwab <schwab@suse.de> [BZ #22927] |