Changeset df2b4ce7 in mainline


Ignore:
Timestamp:
2025-03-05T21:36:14Z (4 days ago)
Author:
Matěj Volf <git@…>
Children:
6a57b93
Parents:
a64970e1
git-author:
Matěj Volf <git@…> (2024-07-15 22:39:45)
git-committer:
Matěj Volf <git@…> (2025-03-05 21:36:14)
Message:

check for hash section presence in rtld

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/rtld/symbol.c

    ra64970e1 rdf2b4ce7  
    6565static elf_symbol_t *def_find_in_module(const char *name, module_t *m)
    6666{
     67        if (m->dyn.hash == NULL) {
     68                /* No hash table */
     69                return NULL;
     70        }
     71
    6772        elf_symbol_t *sym_table;
    6873        elf_symbol_t *s, *sym;
Note: See TracChangeset for help on using the changeset viewer.