Changeset 80585 in vbox for trunk/src/VBox/Runtime/common/checksum
- Timestamp:
- Sep 4, 2019 2:05:50 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 133105
- Location:
- trunk/src/VBox/Runtime/common/checksum
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/checksum/RTSha1Digest.cpp
r76553 r80585 124 124 { 125 125 uint64_t cbFile; 126 rc = RTFile GetSize(hFile, &cbFile);126 rc = RTFileQuerySize(hFile, &cbFile); 127 127 if (RT_FAILURE(rc)) 128 128 { -
trunk/src/VBox/Runtime/common/checksum/RTSha256Digest.cpp
r76553 r80585 128 128 { 129 129 uint64_t cbFile; 130 rc = RTFile GetSize(hFile, &cbFile);130 rc = RTFileQuerySize(hFile, &cbFile); 131 131 if (RT_FAILURE(rc)) 132 132 { -
trunk/src/VBox/Runtime/common/checksum/manifest.cpp
r76553 r80585 118 118 { 119 119 uint64_t cbSize; 120 rc = RTFile GetSize(file, &cbSize);120 rc = RTFileQuerySize(file, &cbSize); 121 121 if (RT_FAILURE(rc)) 122 122 break;
Note:
See TracChangeset
for help on using the changeset viewer.