Changeset c8680be4 in mainline for uspace/lib/c/generic/rtld/symbol.c


Ignore:
Timestamp:
2025-03-09T20:10:46Z (14 hours ago)
Author:
GitHub <noreply@…>
Parents:
0ae9e18 (diff), 98743e2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Matěj Volf <mat.volfik@…> (2025-03-09 20:10:46)
git-committer:
GitHub <noreply@…> (2025-03-09 20:10:46)
Message:

Merge 98743e252b3fa43cef96b1ea3617304534b2fcc8 into 0ae9e18465809a5520c51c76be2866b19c48bd0e

File:
1 edited

Legend:

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

    r0ae9e18 rc8680be4  
    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.