Changes in uspace/lib/c/generic/dlfcn.c [b1834a01:8aea932] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/dlfcn.c
rb1834a01 r8aea932 35 35 */ 36 36 37 #include <errno.h> 37 38 #include <stdio.h> 38 39 #include <stdlib.h> … … 53 54 if (m == NULL) { 54 55 m = module_load(runtime_env, path, mlf_local); 55 module_load_deps(m, mlf_local); 56 if (m == NULL) { 57 return NULL; 58 } 59 60 if (module_load_deps(m, mlf_local) != EOK) { 61 return NULL; 62 } 63 56 64 /* Now relocate. */ 57 65 module_process_relocs(m);
Note:
See TracChangeset
for help on using the changeset viewer.