We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to reproduce:
When resolve times out a crash happens on MDNS.cpp:1429 due to ipAddr == NULL. It's NULL because the function is called by MDNS.cpp:1429:1071
How to solve: change MDNS:1071 to
if (i == 0) { byte* noneAddress = new byte[4]{0, 0, 0, }; this->_finishedResolvingName((char*)this->_resolveNames[0], noneAddress); }
{255, 255, 255, 255} is equal to INADDR_NONE
The text was updated successfully, but these errors were encountered:
No branches or pull requests
How to reproduce:
When resolve times out a crash happens on MDNS.cpp:1429 due to ipAddr == NULL.
It's NULL because the function is called by MDNS.cpp:1429:1071
How to solve:
change MDNS:1071 to
{255, 255, 255, 255} is equal to INADDR_NONE
The text was updated successfully, but these errors were encountered: