summaryrefslogtreecommitdiff
path: root/networking/udhcp/common.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2019-01-07 15:33:42 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2019-01-07 15:33:42 +0100
commit74d9f1ba37010face4bd1449df4d60dd84450b06 (patch)
treeec6b078d67826b01c69ad533376be7c763596bd2 /networking/udhcp/common.c
parentb80bdeba0248e2742cf801e7429d5d7aad69d26d (diff)
downloadbusybox-w32-74d9f1ba37010face4bd1449df4d60dd84450b06.tar.gz
busybox-w32-74d9f1ba37010face4bd1449df4d60dd84450b06.tar.bz2
busybox-w32-74d9f1ba37010face4bd1449df4d60dd84450b06.zip
udhcpc: when decoding DHCP_SUBNET, ensure it is 4 bytes long
function old new delta udhcp_run_script 795 801 +6 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/common.c')
-rw-r--r--networking/udhcp/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/common.c b/networking/udhcp/common.c
index 4c2221b77..fc4de5716 100644
--- a/networking/udhcp/common.c
+++ b/networking/udhcp/common.c
@@ -302,7 +302,7 @@ uint8_t* FAST_FUNC udhcp_get_option32(struct dhcp_packet *packet, int code)
302{ 302{
303 uint8_t *r = udhcp_get_option(packet, code); 303 uint8_t *r = udhcp_get_option(packet, code);
304 if (r) { 304 if (r) {
305 if (r[-1] != 4) 305 if (r[-OPT_DATA + OPT_LEN] != 4)
306 r = NULL; 306 r = NULL;
307 } 307 }
308 return r; 308 return r;