mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Update.
* elf/dl-object.c (_dl_new_object): Micro-optimization.
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
1999-01-19 Ulrich Drepper <drepper@cygnus.com>
|
1999-01-19 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* elf/dl-object.c (_dl_new_object): Micro-optimization.
|
||||||
|
|
||||||
* elf/restest1.c: New file. Symbol resolution test.
|
* elf/restest1.c: New file. Symbol resolution test.
|
||||||
* elf/testobj1_1.c: New file. Module used in this test.
|
* elf/testobj1_1.c: New file. Module used in this test.
|
||||||
* elf/Makefile: Add rules for restest1 generation and execution.
|
* elf/Makefile: Add rules for restest1 generation and execution.
|
||||||
|
@ -48,7 +48,7 @@ _dl_new_object (char *realname, const char *libname, int type,
|
|||||||
new->l_libname = newname;
|
new->l_libname = newname;
|
||||||
new->l_type = type;
|
new->l_type = type;
|
||||||
new->l_loader = loader;
|
new->l_loader = loader;
|
||||||
new->l_global = 0;
|
/* new->l_global = 0; We use calloc therefore not necessary. */
|
||||||
|
|
||||||
/* Counter for the scopes we have to handle. */
|
/* Counter for the scopes we have to handle. */
|
||||||
idx = 0;
|
idx = 0;
|
||||||
|
Reference in New Issue
Block a user