Fix lsDive filename stack overrun (PR#2449)
This commit is contained in:
parent
ee71845d60
commit
552a327df8
@ -56,8 +56,8 @@ void CardReader::lsDive(const char *prepend, SdFile parent, const char * const m
|
||||
// If the entry is a directory and the action is LS_SerialPrint
|
||||
if (DIR_IS_SUBDIR(&p) && lsAction != LS_Count && lsAction != LS_GetFilename) {
|
||||
|
||||
// Allocate enough stack space for the full path to a folder
|
||||
int len = strlen(prepend) + FILENAME_LENGTH + 1;
|
||||
// Allocate enough stack space for the full path to a folder, trailing slash, and nul
|
||||
int len = strlen(prepend) + FILENAME_LENGTH + 1 + 1;
|
||||
char path[len];
|
||||
|
||||
// Get the short name for the item, which we know is a folder
|
||||
|
Loading…
Reference in New Issue
Block a user