mirror of git://sourceware.org/git/glibc.git
* iconv/gconv_conf.c: Initialize empty_path_elem.
This commit is contained in:
parent
403a632578
commit
4c038b68b5
|
@ -1,5 +1,7 @@
|
||||||
2005-12-21 Ulrich Drepper <drepper@redhat.com>
|
2005-12-21 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* iconv/gconv_conf.c: Initialize empty_path_elem.
|
||||||
|
|
||||||
* sysdeps/ieee754/dbl-64/halfulp.c: Mark tab54 as static and const.
|
* sysdeps/ieee754/dbl-64/halfulp.c: Mark tab54 as static and const.
|
||||||
* sysdeps/i386/fpu/e_expl.c: Mark c0 and c1 as const.
|
* sysdeps/i386/fpu/e_expl.c: Mark c0 and c1 as const.
|
||||||
* sysdeps/ieee754/flt-32/s_expm1f.c: Make sure huge and tiny end
|
* sysdeps/ieee754/flt-32/s_expm1f.c: Make sure huge and tiny end
|
||||||
|
|
|
@ -46,7 +46,7 @@ struct path_elem *__gconv_path_elem;
|
||||||
size_t __gconv_max_path_elem_len;
|
size_t __gconv_max_path_elem_len;
|
||||||
|
|
||||||
/* We use the following struct if we couldn't allocate memory. */
|
/* We use the following struct if we couldn't allocate memory. */
|
||||||
static const struct path_elem empty_path_elem;
|
static const struct path_elem empty_path_elem = { NULL, 0 };
|
||||||
|
|
||||||
/* Name of the file containing the module information in the directories
|
/* Name of the file containing the module information in the directories
|
||||||
along the path. */
|
along the path. */
|
||||||
|
|
Loading…
Reference in New Issue