You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When adding '\0' to a String, the length will be incremented, but the NUL character is not written to the underlying buffer. The reason is that in concat() a strcpy is used which does nothing in this case. But the length is still incremented.
The text was updated successfully, but these errors were encountered:
\0 entries are currently not supported, however this may change if and when arduino/ArduinoCore-API#97 is merged. Since those changes will be propagated via ArduinoCore-API integration into ArduinoCore-samd this issue can in fact be closed.
ArduinoCore-samd/cores/arduino/WString.cpp
Line 285 in e6df241
When adding '\0' to a String, the length will be incremented, but the NUL character is not written to the underlying buffer. The reason is that in concat() a strcpy is used which does nothing in this case. But the length is still incremented.
The text was updated successfully, but these errors were encountered: