Changes in uspace/srv/vfs/vfs_ops.c [19f857a:1882525] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_ops.c
r19f857a r1882525 39 39 #include <ipc/ipc.h> 40 40 #include <macros.h> 41 #include < limits.h>41 #include <stdint.h> 42 42 #include <async.h> 43 43 #include <errno.h> … … 592 592 } 593 593 vfs_file_t *file = vfs_file_get(fd); 594 assert(file); 594 595 file->node = node; 595 596 if (oflag & O_APPEND) … … 1354 1355 int ret = vfs_close_internal(newfile); 1355 1356 if (ret != EOK) { 1357 fibril_mutex_unlock(&oldfile->lock); 1356 1358 ipc_answer_0(rid, ret); 1357 1359 return; … … 1360 1362 ret = vfs_fd_free(newfd); 1361 1363 if (ret != EOK) { 1364 fibril_mutex_unlock(&oldfile->lock); 1362 1365 ipc_answer_0(rid, ret); 1363 1366 return;
Note:
See TracChangeset
for help on using the changeset viewer.