mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-30 11:24:12 +01:00
91f0dbc9ec
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)); } |
||
---|---|---|
.. | ||
arduino | ||
robot |