Selaa lähdekoodia

lcd_print_pad: do not overflow len when truncating the string

Yuri D'Elia 2 vuotta sitten
vanhempi
commit
709d07310a
1 muutettua tiedostoa jossa 4 lisäystä ja 1 poistoa
  1. 4 1
      Firmware/lcd.cpp

+ 4 - 1
Firmware/lcd.cpp

@@ -530,7 +530,10 @@ void lcd_print(const char* s)
 
 void lcd_print_pad(const char* s, uint8_t len)
 {
-    while (len-- && *s) lcd_write(*(s++));
+    while (len && *s) {
+        lcd_write(*(s++));
+        --len;
+    }
     lcd_space(len);
 }