Changeset 6afc9d7 in mainline for uspace/lib/bithenge/src/file.c
- Timestamp:
- 2015-10-06T19:01:36Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0328987
- Parents:
- f1f7584
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/bithenge/src/file.c
rf1f7584 r6afc9d7 114 114 struct stat stat; 115 115 int rc = fstat(fd, &stat); 116 if (rc != EOK) {116 if (rc != 0) { 117 117 if (needs_close) 118 118 close(fd); … … 157 157 int fd = open(filename, O_RDONLY); 158 158 if (fd < 0) 159 return fd;159 return errno; 160 160 161 161 return new_file_blob(out, fd, true);
Note:
See TracChangeset
for help on using the changeset viewer.