Changeset 77234 in vbox
- Timestamp:
- Feb 9, 2019 6:28:44 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/fileio-posix.cpp
r76902 r77234 516 516 ssize_t cbWrittenPart = write(RTFileToNative(hFile), (const char *)pvBuf + cbWritten, cbToWrite - cbWritten); 517 517 if (cbWrittenPart <= 0) 518 return RTErrConvertFromErrno(errno);518 return cbWrittenPart < 0 ? RTErrConvertFromErrno(errno) : VERR_TRY_AGAIN; 519 519 cbWritten += cbWrittenPart; 520 520 }
Note:
See TracChangeset
for help on using the changeset viewer.