]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 20 Jan 1999 00:00:16 +0000 (00:00 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 20 Jan 1999 00:00:16 +0000 (00:00 +0000)
* elf/dl-object.c (_dl_new_object): Micro-optimization.

ChangeLog
elf/dl-object.c

index a471fd6f46ac83930da0e9dad2d6895d073ad4db..86a8b7af382f900c6dd7242d1e6e647d8a82ccc3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 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/testobj1_1.c: New file.  Module used in this test.
        * elf/Makefile: Add rules for restest1 generation and execution.
index 1c940c607a5ac2334cdd79c902b28da79f857b6e..fd2cdaec836b7c16dc71e16daca40900e52b3c71 100644 (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;