Changeset 80585 in vbox for trunk/src/VBox/Runtime/tools
- Timestamp:
- Sep 4, 2019 2:05:50 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 133105
- Location:
- trunk/src/VBox/Runtime/tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/tools/RTLdrCheckImports.cpp
r76553 r80585 277 277 /* Read it into a memory buffer. */ 278 278 uint64_t cbFile; 279 rc = RTVfsFile GetSize(hVfsFile, &cbFile);279 rc = RTVfsFileQuerySize(hVfsFile, &cbFile); 280 280 if (RT_SUCCESS(rc)) 281 281 { … … 375 375 } 376 376 else 377 RTMsgError("%s: %s: RTVfsFile GetSize failed on export file: %Rrc", pszImage, szPath, rc);377 RTMsgError("%s: %s: RTVfsFileQuerySize failed on export file: %Rrc", pszImage, szPath, rc); 378 378 RTVfsFileRelease(hVfsFile); 379 379 return rc; -
trunk/src/VBox/Runtime/tools/RTSignTool.cpp
r76553 r80585 781 781 uint32_t const cbWinCert = RT_UOFFSETOF(WIN_CERTIFICATE, bCertificate); 782 782 uint64_t offCur = 0; 783 rc = RTFile GetSize(hFile, &offCur);783 rc = RTFileQuerySize(hFile, &offCur); 784 784 if ( RT_SUCCESS(rc) 785 785 && offCur < _2G) … … 860 860 RTMsgError("File to big: %'RU64 bytes", offCur); 861 861 else 862 RTMsgError("RTFile GetSize failed: %Rrc", rc);862 RTMsgError("RTFileQuerySize failed: %Rrc", rc); 863 863 } 864 864 }
Note:
See TracChangeset
for help on using the changeset viewer.