Changeset 84506 in vbox
- Timestamp:
- May 25, 2020 2:56:35 PM (5 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/math/gcc/udivmoddi4.c
r82968 r84506 47 47 Divident.u = u64A; 48 48 Divisor.u = u64B; 49 Quotient.u = 0; /* shut up gcc 10 */ 50 Reminder.u = 0; /* shut up gcc 10 */ 49 51 RTUInt64DivRem(&Quotient, &Reminder, &Divident, &Divisor); 50 52 if (pu64R) -
trunk/src/VBox/Runtime/r3/posix/fileio-posix.cpp
r82968 r84506 731 731 #else 732 732 /* PORTME! Avoid this path when possible. */ 733 uint64_t offSaved ;733 uint64_t offSaved = UINT64_MAX; 734 734 int rc = RTFileSeek(hFile, 0, RTFILE_SEEK_CURRENT, &offSaved); 735 735 if (RT_SUCCESS(rc)) … … 751 751 * Save the current location 752 752 */ 753 uint64_t offOld ;753 uint64_t offOld = UINT64_MAX; 754 754 int rc = RTFileSeek(hFile, 0, RTFILE_SEEK_CURRENT, &offOld); 755 755 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.