fix: 'hf mf cload' - too small buffer, needs one more byte for the NULL-terminator

This commit is contained in:
iceman1001 2017-08-28 09:39:20 +02:00
commit bd71e15289

View file

@ -2143,7 +2143,7 @@ int CmdHF14AMfCLoad(const char *Cmd) {
FILE * f;
char filename[FILE_PATH_SIZE];
char * fnameptr = filename;
char buf[32] = {0x00};
char buf[33] = {0x00}; // 32+1 null terminator
uint8_t buf8[16] = {0x00};
uint8_t fillFromEmulator = 0;
int i, len, blockNum, flags=0;