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