Changeset 61600e7 in mainline
- Timestamp:
- 2017-03-19T10:08:43Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3bbd921
- Parents:
- 61042de
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/vfs/vfs.c
r61042de r61600e7 1157 1157 } 1158 1158 1159 char *pa = vfs_absolutize(child, NULL); 1160 if (!pa) { 1161 free(child); 1162 closedir(dir); 1163 return ENOMEM; 1164 } 1165 1166 free(child); 1167 child = pa; 1168 1159 1169 rc = stat(child, &st); 1160 1170 if (rc != 0) { … … 1193 1203 process_mp("/", &st, mtab_list); 1194 1204 1195 return vfs_get_mtab_visit(" ", mtab_list, st.fs_handle, st.service_id);1205 return vfs_get_mtab_visit("/", mtab_list, st.fs_handle, st.service_id); 1196 1206 } 1197 1207
Note:
See TracChangeset
for help on using the changeset viewer.