Changeset f77c1c9 in mainline for uspace/srv/vfs/vfs_ops.c
- Timestamp:
- 2017-12-08T21:03:35Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c19a5a59
- Parents:
- c1694b6b
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2017-12-07 19:44:55)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2017-12-08 21:03:35)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_ops.c
rc1694b6b rf77c1c9 86 86 } 87 87 88 int vfs_op_clone(int oldfd, int newfd, bool desc )88 int vfs_op_clone(int oldfd, int newfd, bool desc, int *out_fd) 89 89 { 90 90 int rc; … … 118 118 vfs_file_put(oldfile); 119 119 120 return rc; 120 if (rc < 0) { 121 return rc; 122 } 123 124 *out_fd = rc; 125 return EOK; 121 126 } 122 127
Note:
See TracChangeset
for help on using the changeset viewer.