summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTjerk Meesters <datibbaw@php.net>2014-03-11 17:52:20 +0800
committerTjerk Meesters <datibbaw@php.net>2014-03-11 19:08:18 +0800
commitddd7ed9b24798086482554bbe54425ee048b7eff (patch)
tree1ab2a15cdccec00ea3f43b6986cbf66bfd24549b
parent1a624e27a640f776db63934eddbbb50f634e2144 (diff)
downloadphp-git-ddd7ed9b24798086482554bbe54425ee048b7eff.tar.gz
Removed bogus loops
-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 f1756e4791..ca602268a0 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)