Explorar el Código

add nullptr check

teensy4-core
Frank hace 6 años
padre
commit
1badfa2ccd
Ninguna cuenta vinculada a la dirección de correo electrónico del committer
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. +1
    -0
      teensy3/Print.cpp

+ 1
- 0
teensy3/Print.cpp Ver fichero

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

Cargando…
Cancelar
Guardar