Procházet zdrojové kódy

Merge pull request #343 from FrankBoesing/master

add nullptr check to Print.cpp - write
teensy4-core
Paul Stoffregen před 6 roky
rodič
revize
be57352b60
Žádný účet není propojen s e-mailovou adresou tvůrce revize
2 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. +1
    -0
      teensy3/Print.cpp
  2. +1
    -0
      teensy4/Print.cpp

+ 1
- 0
teensy3/Print.cpp Zobrazit soubor

@@ -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;

+ 1
- 0
teensy4/Print.cpp Zobrazit soubor

@@ -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;

Načítá se…
Zrušit
Uložit