Changeset 56254 in vbox for trunk/src/VBox/Runtime/common/time
- Timestamp:
- Jun 5, 2015 10:57:57 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/time/time.cpp
r52833 r56254 801 801 unsigned const cDaysInMonth = fLeapYear 802 802 ? g_acDaysInMonthsLeap[pTime->u8Month - 1] 803 : g_acDaysInMonths Leap[pTime->u8Month - 1];803 : g_acDaysInMonths[pTime->u8Month - 1]; 804 804 if (pTime->u8MonthDay == 0 || pTime->u8MonthDay > cDaysInMonth) 805 805 return NULL;
Note:
See TracChangeset
for help on using the changeset viewer.