fixed a bug in dhcp4msg.c
This commit is contained in:
parent
fcd2c4f68b
commit
2c9e0555d0
@ -212,7 +212,11 @@ qse_dhcp4_opt_hdr_t* qse_dhcp4_find_option (const qse_dhcp4_pktinf_t* pkt, int c
|
||||
qse_dhcp4_opt_hdr_t* opthdr;
|
||||
|
||||
/* at least 1 byte is available. the check is because of PADDING or END */
|
||||
if (*opt == QSE_DHCP4_OPT_PADDING) continue;
|
||||
if (*opt == QSE_DHCP4_OPT_PADDING)
|
||||
{
|
||||
opt++;
|
||||
continue;
|
||||
}
|
||||
if (*opt == QSE_DHCP4_OPT_END)
|
||||
{
|
||||
if (code == QSE_DHCP4_OPT_END)
|
||||
|
Loading…
Reference in New Issue
Block a user