X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=blobdiff_plain;f=src%2Fdhcpv4.c;fp=src%2Fdhcpv4.c;h=b0a4603acdfce156b646b8556d92031a3dc2dcc7;hp=c7ac058b5d9396e8ff4a83adca2441d0110f0875;hb=a827fcad451996f1a7043b479d8c6162174b2038;hpb=bea088b6afe84d06552880778dc791cad97d4aec diff --git a/src/dhcpv4.c b/src/dhcpv4.c index c7ac058..b0a4603 100644 --- a/src/dhcpv4.c +++ b/src/dhcpv4.c @@ -95,7 +95,8 @@ int setup_dhcpv4_interface(struct interface *iface, bool enable) return -1; } - uint32_t mask = iface->addr4[0].prefix ? htonl(~((1 << (32 - iface->addr4[0].prefix)) - 1)) : 0; + uint32_t mask = iface->addr4 && iface->addr4[0].prefix ? + htonl(~((1 << (32 - iface->addr4[0].prefix)) - 1)) : 0xffffffff; /* Create a range if not specified */ if (!(iface->dhcpv4_start.s_addr & htonl(0xffff0000)) &&