Changeset 1433ecda in mainline for uspace/lib/c/generic/rtld/module.c
- Timestamp:
- 2018-04-04T15:42:37Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c4e1cc
- Parents:
- 47b2d7e3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/rtld/module.c
r47b2d7e3 r1433ecda 91 91 92 92 /* Do not relocate twice. */ 93 if (m->relocated) return; 93 if (m->relocated) 94 return; 94 95 95 96 module_process_pre_arch(m); … … 246 247 247 248 while (dp->d_tag != DT_NULL) { 248 if (dp->d_tag == DT_NEEDED) ++n; 249 if (dp->d_tag == DT_NEEDED) 250 ++n; 249 251 ++dp; 250 252 }
Note:
See TracChangeset
for help on using the changeset viewer.