aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/Stream.cpp
diff options
context:
space:
mode:
authorDave Madison <dmadison@users.noreply.github.com>2020-02-01 05:46:15 -0500
committerGitHub <noreply@github.com>2020-02-01 05:46:15 -0500
commit924299c159b619852d4c5eb1fc106db8a459d661 (patch)
tree39aad14af9ba55cc9f26f2920f6ff873552f4c62 /cores/arduino/Stream.cpp
parent59dd6085ec8ec0a5438c1019e982fefb77f485d3 (diff)
parent923b4441fed740c5ff1e42bb8f2f58ea87d4eaf7 (diff)
Merge pull request #6 from dmadison/upstream-updatesv1.0.1
Arduino Core 1.8.2
Diffstat (limited to 'cores/arduino/Stream.cpp')
-rw-r--r--cores/arduino/Stream.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/cores/arduino/Stream.cpp b/cores/arduino/Stream.cpp
index d284631..9eff663 100644
--- a/cores/arduino/Stream.cpp
+++ b/cores/arduino/Stream.cpp
@@ -218,7 +218,6 @@ size_t Stream::readBytes(char *buffer, size_t length)
size_t Stream::readBytesUntil(char terminator, char *buffer, size_t length)
{
- if (length < 1) return 0;
size_t index = 0;
while (index < length) {
int c = timedRead();