summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--misc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc.c b/misc.c
index 08fcb38c2..cfd32729a 100644
--- a/misc.c
+++ b/misc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: misc.c,v 1.108 2017/03/14 00:25:03 dtucker Exp $ */ 1/* $OpenBSD: misc.c,v 1.109 2017/03/14 00:55:37 dtucker Exp $ */
2/* 2/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 * Copyright (c) 2005,2006 Damien Miller. All rights reserved. 4 * Copyright (c) 2005,2006 Damien Miller. All rights reserved.
@@ -350,10 +350,10 @@ convtime(const char *s)
350 default: 350 default:
351 return -1; 351 return -1;
352 } 352 }
353 if (secs > LONG_MAX / multiplier) 353 if (secs >= LONG_MAX / multiplier)
354 return -1; 354 return -1;
355 secs *= multiplier; 355 secs *= multiplier;
356 if (total > LONG_MAX - secs) 356 if (total >= LONG_MAX - secs)
357 return -1; 357 return -1;
358 total += secs; 358 total += secs;
359 if (total < 0) 359 if (total < 0)