From a36fba04b668cb61fb60cccd1c842f641c8a8da9 Mon Sep 17 00:00:00 2001 From: otto <> Date: Fri, 16 Jul 2004 18:36:05 +0000 Subject: [PATCH] Do not forget to test the lower bound if the upper bound > LLONG_MAX. ok millert@ --- src/lib/libc/stdlib/strtonum.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/libc/stdlib/strtonum.c b/src/lib/libc/stdlib/strtonum.c index 4c41c22b..a2dfed25 100644 --- a/src/lib/libc/stdlib/strtonum.c +++ b/src/lib/libc/stdlib/strtonum.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strtonum.c,v 1.4 2004/07/16 16:03:36 millert Exp $ */ +/* $OpenBSD: strtonum.c,v 1.5 2004/07/16 18:36:05 otto Exp $ */ /* * Copyright (c) 2004 Ted Unangst and Todd Miller * All rights reserved. @@ -55,6 +55,8 @@ strtonum(const char *numstr, long long minval, unsigned long long umaxval, else if ((ull == ULLONG_MAX && errno == ERANGE) || ull > umaxval) error = TOOLARGE; + else if (ull < minval) + error = TOOSMALL; } else { if (minval > maxval || maxval < minval) { error = INVALID;