We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Overflow risk in Dhcp.cpp. _dhcpLocalIp has only 4 byte. Every variable should be filled separate with zeros.
Dhcp.cpp
void DhcpClass::reset_DHCP_lease(){ // zero out _dhcpSubnetMask, _dhcpGatewayIp, _dhcpLocalIp, _dhcpDhcpServerIp, _dhcpDnsServerIp memset(_dhcpLocalIp, 0, 20); }