Changes in uspace/lib/c/generic/loader.c [6afc9d7:50b581d] in mainline
- File:
-
- 1 edited
-
uspace/lib/c/generic/loader.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/loader.c
r6afc9d7 r50b581d 69 69 70 70 async_sess_t *sess = 71 service_connect_blocking( SERVICE_LOADER, INTERFACE_LOADER, 0);71 service_connect_blocking(EXCHANGE_SERIALIZE, SERVICE_LOAD, 0, 0); 72 72 if (sess == NULL) { 73 73 free(ldr); … … 124 124 return ENOMEM; 125 125 126 if ( getcwd(cwd, MAX_PATH_LEN + 1) == NULL)126 if (!getcwd(cwd, MAX_PATH_LEN + 1)) 127 127 str_cpy(cwd, MAX_PATH_LEN + 1, "/"); 128 128 … … 162 162 { 163 163 size_t pa_len; 164 char *pa = vfs_absolutize(path, &pa_len);164 char *pa = absolutize(path, &pa_len); 165 165 if (!pa) 166 166 return ENOMEM;
Note:
See TracChangeset
for help on using the changeset viewer.
