Fixed the loadFileDICTIONARY_safe memset alignment. Thanks to @doegox for pointing that out.

This commit is contained in:
Matthias Konrath 2019-08-28 12:14:40 +02:00
parent 2290b2bd88
commit 5167507a83

View file

@ -691,8 +691,8 @@ int loadFileDICTIONARY_safe(const char *preferredName, void **pdata, uint8_t key
if (*pdata == NULL) {
return PM3_EFILE;
} else {
// zero the new memeory (safety first)
memset(*pdata + counter, 0, block_size);
// zero the new memory (safety first)
memset(*pdata + allocation_size - block_size, 0, block_size);
}
}