Changeset 79278 in vbox
- Timestamp:
- Jun 21, 2019 1:52:35 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 131471
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestFileImpl.cpp
r79254 r79278 1402 1402 LogFlowThisFuncEnter(); 1403 1403 1404 /* Cap the read at 1MiB because that's all the guest will return anyway. */ 1405 if (aToRead > _1M) 1406 aToRead = _1M; 1407 1404 1408 aData.resize(aToRead); 1405 1409 … … 1436 1440 1437 1441 LogFlowThisFuncEnter(); 1442 1443 /* Cap the read at 1MiB because that's all the guest will return anyway. */ 1444 if (aToRead > _1M) 1445 aToRead = _1M; 1438 1446 1439 1447 aData.resize(aToRead);
Note:
See TracChangeset
for help on using the changeset viewer.