1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00
* elf/dl-object.c (_dl_new_object): Micro-optimization.
This commit is contained in:
Ulrich Drepper
1999-01-20 00:00:16 +00:00
parent 6bd0638460
commit b25d4ff04d
2 changed files with 3 additions and 1 deletions

View File

@ -48,7 +48,7 @@ _dl_new_object (char *realname, const char *libname, int type,
new->l_libname = newname;
new->l_type = type;
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. */
idx = 0;