We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5227b32 commit a14ae34Copy full SHA for a14ae34
libraries/ESP8266WebServer/src/ESP8266WebServer.cpp
@@ -93,7 +93,7 @@ bool ESP8266WebServer::authenticate(const char * username, const char * password
93
authReq = authReq.substring(6);
94
authReq.trim();
95
char toencodeLen = strlen(username)+strlen(password)+1;
96
- char *toencode = new char[toencodeLen];
+ char *toencode = new char[toencodeLen + 1];
97
if(toencode == NULL){
98
authReq = String();
99
return false;
0 commit comments