Explorar el Código
Merge pull request #343 from FrankBoesing/master
add nullptr check to Print.cpp - write
teensy4-core
Paul Stoffregen
hace 6 años
Ninguna cuenta vinculada a la dirección de correo electrónico del committer
Se han
modificado 2 ficheros con
2 adiciones y
0 borrados
-
teensy3/Print.cpp
-
teensy4/Print.cpp
|
|
@@ -39,6 +39,7 @@ |
|
|
|
|
|
|
|
size_t Print::write(const uint8_t *buffer, size_t size) |
|
|
|
{ |
|
|
|
if (buffer == nullptr) return 0; |
|
|
|
size_t count = 0; |
|
|
|
while (size--) count += write(*buffer++); |
|
|
|
return count; |
|
|
@@ -41,6 +41,7 @@ |
|
|
|
|
|
|
|
size_t Print::write(const uint8_t *buffer, size_t size) |
|
|
|
{ |
|
|
|
if (buffer == nullptr) return 0; |
|
|
|
size_t count = 0; |
|
|
|
while (size--) count += write(*buffer++); |
|
|
|
return count; |