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