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
Thank you for great wrok.
I have a small problem.
https://github.com/njh/EtherCard/blob/master/src/tcpip.cpp#L47
static const char *client_postval;
https://github.com/njh/EtherCard/blob/master/src/tcpip.cpp#L542
if (client_postval == 0) {
https://github.com/njh/EtherCard/blob/master/src/tcpip.cpp#L562
strlen(client_postval),
https://github.com/njh/EtherCard/blob/master/src/tcpip.cpp#L588
client_postval = 0;
https://github.com/njh/EtherCard/blob/master/src/tcpip.cpp#L597
client_postval = postval;
These code may cause an error in the future.
client_postval = 0; --> client_postval = "";
if (client_postval == 0) --> if (strlen(client_postval) == 0)
Thank you.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thank you for great wrok.
I have a small problem.
https://github.com/njh/EtherCard/blob/master/src/tcpip.cpp#L47
https://github.com/njh/EtherCard/blob/master/src/tcpip.cpp#L542
https://github.com/njh/EtherCard/blob/master/src/tcpip.cpp#L562
https://github.com/njh/EtherCard/blob/master/src/tcpip.cpp#L588
https://github.com/njh/EtherCard/blob/master/src/tcpip.cpp#L597
These code may cause an error in the future.
client_postval = 0; --> client_postval = "";
if (client_postval == 0) --> if (strlen(client_postval) == 0)
Thank you.
The text was updated successfully, but these errors were encountered: