summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTjerk Meesters <datibbaw@php.net>2014-03-11 19:14:43 +0800
committerTjerk Meesters <datibbaw@php.net>2014-03-11 19:14:43 +0800
commitcb5178a450055f5b9378efb55732f7e263d210b6 (patch)
treef53af65f52abc514bdd680ff8dda5db19aeaa3c5
parent72050af85538ff1d1b56480dfa2d2d9f7f94b016 (diff)
parentddd7ed9b24798086482554bbe54425ee048b7eff (diff)
downloadphp-git-cb5178a450055f5b9378efb55732f7e263d210b6.tar.gz
Merge branch 'PHP-5.4' into PHP-5.5
-rw-r--r--ext/date/lib/tm2unixtime.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/ext/date/lib/tm2unixtime.c b/ext/date/lib/tm2unixtime.c
index 5fc84a5ff7..7231dff093 100644
--- a/ext/date/lib/tm2unixtime.c
+++ b/ext/date/lib/tm2unixtime.c
@@ -28,7 +28,7 @@ static int month_tab[12] = { 0, 31, 59, 90, 120, 151, 181, 212, 24
static int days_in_month_leap[13] = { 31, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
static int days_in_month[13] = { 31, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
-static int do_range_limit(timelib_sll start, timelib_sll end, timelib_sll adj, timelib_sll *a, timelib_sll *b)
+static void do_range_limit(timelib_sll start, timelib_sll end, timelib_sll adj, timelib_sll *a, timelib_sll *b)
{
if (*a < start) {
*b -= (start - *a - 1) / adj + 1;
@@ -38,7 +38,6 @@ static int do_range_limit(timelib_sll start, timelib_sll end, timelib_sll adj, t
*b += *a / adj;
*a -= adj * (*a / adj);
}
- return 0;
}
static void inc_month(timelib_sll *y, timelib_sll *m)
@@ -170,24 +169,24 @@ static void do_adjust_for_weekday(timelib_time* time)
void timelib_do_rel_normalize(timelib_time *base, timelib_rel_time *rt)
{
- do {} while (do_range_limit(0, 60, 60, &rt->s, &rt->i));
- do {} while (do_range_limit(0, 60, 60, &rt->i, &rt->h));
- do {} while (do_range_limit(0, 24, 24, &rt->h, &rt->d));
- do {} while (do_range_limit(0, 12, 12, &rt->m, &rt->y));
+ do_range_limit(0, 60, 60, &rt->s, &rt->i);
+ do_range_limit(0, 60, 60, &rt->i, &rt->h);
+ do_range_limit(0, 24, 24, &rt->h, &rt->d);
+ do_range_limit(0, 12, 12, &rt->m, &rt->y);
do_range_limit_days_relative(&base->y, &base->m, &rt->y, &rt->m, &rt->d, rt->invert);
- do {} while (do_range_limit(0, 12, 12, &rt->m, &rt->y));
+ do_range_limit(0, 12, 12, &rt->m, &rt->y);
}
void timelib_do_normalize(timelib_time* time)
{
- if (time->s != TIMELIB_UNSET) do {} while (do_range_limit(0, 60, 60, &time->s, &time->i));
- if (time->s != TIMELIB_UNSET) do {} while (do_range_limit(0, 60, 60, &time->i, &time->h));
- if (time->s != TIMELIB_UNSET) do {} while (do_range_limit(0, 24, 24, &time->h, &time->d));
- do {} while (do_range_limit(1, 13, 12, &time->m, &time->y));
+ if (time->s != TIMELIB_UNSET) do_range_limit(0, 60, 60, &time->s, &time->i);
+ if (time->s != TIMELIB_UNSET) do_range_limit(0, 60, 60, &time->i, &time->h);
+ if (time->s != TIMELIB_UNSET) do_range_limit(0, 24, 24, &time->h, &time->d);
+ do_range_limit(1, 13, 12, &time->m, &time->y);
do {} while (do_range_limit_days(&time->y, &time->m, &time->d));
- do {} while (do_range_limit(1, 13, 12, &time->m, &time->y));
+ do_range_limit(1, 13, 12, &time->m, &time->y);
}
static void do_adjust_relative(timelib_time* time)