mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-25 04:48:31 +00:00
🩹 Handle nullptr in CardReader::printLongPath (#23197)
This commit is contained in:
parent
a3c4a5eca6
commit
1861f780de
@ -359,7 +359,7 @@ void CardReader::ls(TERN_(LONG_FILENAME_HOST_SUPPORT, bool includeLongNames/*=fa
|
||||
//
|
||||
void CardReader::printLongPath(char * const path) {
|
||||
|
||||
int i, pathLen = strlen(path);
|
||||
int i, pathLen = path ? strlen(path) : 0;
|
||||
|
||||
// SERIAL_ECHOPGM("Full Path: "); SERIAL_ECHOLN(path);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user