diff options
author | Andreas Schwab <schwab@redhat.com> | 2011-10-25 13:30:44 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@redhat.com> | 2011-10-25 13:33:12 +0200 |
commit | 16437fece4208f299972a5f7e3fc04b2d4402334 (patch) | |
tree | ff461bbe8a21736f95c9fdce7a257c1f237f7bde /elf/dl-fini.c | |
parent | 31d3cc00b0cc5205b4b4efd73c911cfddff444c6 (diff) | |
download | glibc-16437fece4208f299972a5f7e3fc04b2d4402334.tar.gz glibc-16437fece4208f299972a5f7e3fc04b2d4402334.tar.xz glibc-16437fece4208f299972a5f7e3fc04b2d4402334.zip |
Small optimization of dependency sorting
Diffstat (limited to 'elf/dl-fini.c')
-rw-r--r-- | elf/dl-fini.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-fini.c b/elf/dl-fini.c index 6df80ef78e..9fd913e0b7 100644 --- a/elf/dl-fini.c +++ b/elf/dl-fini.c @@ -44,7 +44,7 @@ _dl_sort_fini (struct link_map **maps, size_t nmaps, char *used, Lmid_t ns) while (1) { /* Keep track of which object we looked at this round. */ - seen[i] += seen[i] < 2; + ++seen[i]; struct link_map *thisp = maps[i]; /* Do not handle ld.so in secondary namespaces and object which |