ArduinoCore-avr/cores
Amulya Kumar Sahoo 2f98fe16d7 Fix of a bug
Stream::find(char *target) passes NULL as “terminator” to Stream::findUntil(char *target, char *terminator), which immediately dereferences it by passing it on to strlen() :
 
bool Stream::find(char *target)
{
  return findUntil(target, NULL);
}
 
// as find but search ends if the terminator string is found
bool Stream::findUntil(char *target, char *terminator)
{
  return findUntil(target, strlen(target), terminator, strlen(terminator));
}
2014-05-30 11:47:08 +05:30
..
arduino Fix of a bug 2014-05-30 11:44:50 +05:30
robot Fix of a bug 2014-05-30 11:47:08 +05:30