aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpc.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-02-17 19:20:32 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2017-02-17 19:20:32 +0100
commit7c67f1e9abf8bc26868236bbe3aa35aa130e2696 (patch)
tree8c3104026d1f1c87869874b84b8ce044fca9fdf8 /networking/udhcp/dhcpc.c
parent94dcfd8cc065b699081984d6f4b4bbfc811937b1 (diff)
downloadbusybox-7c67f1e9abf8bc26868236bbe3aa35aa130e2696.tar.gz
udhcpc: make sure we do not overflow poll timeout
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/dhcpc.c')
-rw-r--r--networking/udhcp/dhcpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c
index 8f7f59e08..881512cf3 100644
--- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c
@@ -1453,7 +1453,7 @@ int udhcpc_main(int argc UNUSED_PARAM, char **argv)
if (tv > 0) {
log1("waiting on select %u seconds", tv);
timestamp_before_wait = (unsigned)monotonic_sec();
- retval = poll(pfds, 2, tv * 1000);
+ retval = poll(pfds, 2, tv < INT_MAX/1000 ? tv * 1000 : INT_MAX);
if (retval < 0) {
/* EINTR? A signal was caught, don't panic */
if (errno == EINTR) {