Changeset 80585 in vbox for trunk/src/VBox/Runtime/common/misc
- Timestamp:
- Sep 4, 2019 2:05:50 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 133105
- Location:
- trunk/src/VBox/Runtime/common/misc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/inifile.cpp
r76553 r80585 147 147 */ 148 148 uint64_t cbFile; 149 int rc = RTVfsFile GetSize(pThis->hVfsFile, &cbFile);149 int rc = RTVfsFileQuerySize(pThis->hVfsFile, &cbFile); 150 150 AssertRCReturn(rc, rc); 151 151 -
trunk/src/VBox/Runtime/common/misc/s3.cpp
r76553 r80585 956 956 957 957 uint64_t cbFileSize; 958 rc = RTFile GetSize(hFile, &cbFileSize);958 rc = RTFileQuerySize(hFile, &cbFileSize); 959 959 if (RT_FAILURE(rc)) 960 960 {
Note:
See TracChangeset
for help on using the changeset viewer.