Changeset 59620 in vbox for trunk/src/VBox/Runtime/common/zip
- Timestamp:
- Feb 10, 2016 12:47:33 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 105459
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/gzipvfs.cpp
r57358 r59620 313 313 { 314 314 size_t cbReadIn = ~(size_t)0; 315 rc = RTVfsIoStrmSgRead(pThis->hVfsIos, &pThis->SgBuf, fBlocking, &cbReadIn);315 rc = RTVfsIoStrmSgRead(pThis->hVfsIos, -1 /*off*/, &pThis->SgBuf, fBlocking, &cbReadIn); 316 316 if (rc != VINF_SUCCESS) 317 317 { … … 425 425 426 426 cbWrittenOut = ~(size_t)0; 427 rc = RTVfsIoStrmSgWrite(pThis->hVfsIos, &pThis->SgBuf, fBlocking, &cbWrittenOut);427 rc = RTVfsIoStrmSgWrite(pThis->hVfsIos, -1 /*off*/, &pThis->SgBuf, fBlocking, &cbWrittenOut); 428 428 if (rc != VINF_SUCCESS) 429 429 {
Note:
See TracChangeset
for help on using the changeset viewer.