diff options
author | richard <none@none> | 2010-01-06 13:37:30 -0800 |
---|---|---|
committer | richard <none@none> | 2010-01-06 13:37:30 -0800 |
commit | 97427f2a8d99e25520cf5b59310c0b67407b34a3 (patch) | |
tree | f7f26a6b2ac6a7f2aea233c64ed2f9a1ff3fd8b7 /indra/newview/lldateutil.cpp | |
parent | 49a744b676871db094d1608819a90fec02a6732d (diff) | |
parent | a1e342b3f711c7ea23ac60b016c8b4024bf18a4a (diff) |
merge
Diffstat (limited to 'indra/newview/lldateutil.cpp')
-rw-r--r-- | indra/newview/lldateutil.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/newview/lldateutil.cpp b/indra/newview/lldateutil.cpp index 10b7935caf..abb2fdeb9a 100644 --- a/indra/newview/lldateutil.cpp +++ b/indra/newview/lldateutil.cpp @@ -44,15 +44,18 @@ static S32 DAYS_PER_MONTH_LEAP[] = static S32 days_from_month(S32 year, S32 month) { + llassert_always(1 <= month); + llassert_always(month <= 12); + if (year % 4 == 0 && year % 100 != 0) { // leap year - return DAYS_PER_MONTH_LEAP[month]; + return DAYS_PER_MONTH_LEAP[month - 1]; } else { - return DAYS_PER_MONTH_NOLEAP[month]; + return DAYS_PER_MONTH_NOLEAP[month - 1]; } } |