Changeset 80585 in vbox for trunk/src/VBox/Runtime/common/ldr
- Timestamp:
- Sep 4, 2019 2:05:50 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 133105
- Location:
- trunk/src/VBox/Runtime/common/ldr
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/ldr/ldrFile.cpp
r77971 r80585 225 225 if (RT_SUCCESS(rc)) 226 226 { 227 rc = RTFile GetSize(pFileReader->hFile, &pFileReader->cbFile);227 rc = RTFileQuerySize(pFileReader->hFile, &pFileReader->cbFile); 228 228 if (RT_SUCCESS(rc)) 229 229 { -
trunk/src/VBox/Runtime/common/ldr/ldrVfsFile.cpp
r77971 r80585 88 88 PRTLDRREADERVFSFILE pFileReader = (PRTLDRREADERVFSFILE)pReader; 89 89 uint64_t cbFile; 90 int rc = RTVfsFile GetSize(pFileReader->hVfsFile, &cbFile);90 int rc = RTVfsFileQuerySize(pFileReader->hVfsFile, &cbFile); 91 91 if (RT_SUCCESS(rc)) 92 92 return cbFile;
Note:
See TracChangeset
for help on using the changeset viewer.