mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 21:10:07 +00:00
Warning patrol.
This commit is contained in:
parent
9c96ff2385
commit
5e4287d16f
@ -1,3 +1,9 @@
|
|||||||
|
2011-08-14 Roland McGrath <roland@hack.frob.com>
|
||||||
|
|
||||||
|
* sysdeps/generic/ldsodefs.h (struct unique_sym): Add a const.
|
||||||
|
* elf/rtld.c (dl_main): Invert order of assignment in last change,
|
||||||
|
to avoid a warning.
|
||||||
|
|
||||||
2011-08-14 David S. Miller <davem@davemloft.net>
|
2011-08-14 David S. Miller <davem@davemloft.net>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/sparc/bits/resource.h (RLIM_INFINITY,
|
* sysdeps/unix/sysv/linux/sparc/bits/resource.h (RLIM_INFINITY,
|
||||||
|
@ -1391,7 +1391,7 @@ of this helper program; chances are you did not intend to run this program.\n\
|
|||||||
char *copy = malloc (len);
|
char *copy = malloc (len);
|
||||||
if (copy == NULL)
|
if (copy == NULL)
|
||||||
_dl_fatal_printf ("out of memory\n");
|
_dl_fatal_printf ("out of memory\n");
|
||||||
l->l_name = l->l_libname->name = memcpy (copy, dsoname, len);
|
l->l_libname->name = l->l_name = memcpy (copy, dsoname, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Add the vDSO to the object list. */
|
/* Add the vDSO to the object list. */
|
||||||
|
@ -396,7 +396,7 @@ struct rtld_global
|
|||||||
uint32_t hashval;
|
uint32_t hashval;
|
||||||
const char *name;
|
const char *name;
|
||||||
const ElfW(Sym) *sym;
|
const ElfW(Sym) *sym;
|
||||||
struct link_map *map;
|
const struct link_map *map;
|
||||||
} *entries;
|
} *entries;
|
||||||
size_t size;
|
size_t size;
|
||||||
size_t n_elements;
|
size_t n_elements;
|
||||||
|
Loading…
Reference in New Issue
Block a user