From e7beef5f1992a08510ed58d3acd2bdf32090f0da Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 2 Sep 2001 07:27:51 +0000 Subject: [PATCH] (dl_main): Increment l_opencount for main binary. --- elf/rtld.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/elf/rtld.c b/elf/rtld.c index a01594a..cf7f7ef 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -554,6 +554,8 @@ of this helper program; chances are you did not intend to run this program.\n\ _dl_loaded->l_map_end = 0; /* Perhaps the executable has no PT_LOAD header entries at all. */ _dl_loaded->l_map_start = ~0; + /* We opened the file, account for it. */ + ++_dl_loaded->l_opencount; /* Scan the program header table for the dynamic section. */ for (ph = phdr; ph < &phdr[phnum]; ++ph) -- 2.7.4