V594. The pointer steps out of array's bounds.
V594 The pointer steps out of array's bounds. ff_dir.c 260
FF_T_WCHAR FileName[FF_MAX_FILENAME];
FF_T_UINT32 FF_FindEntryInDir(....) {
....
FF_T_WCHAR *lastPtr = pDirent->FileName +
sizeof(pDirent->FileName);
....
lastPtr[-1] = '\0';
....
}
This is what should have been written here: FF_T_WCHAR *lastPtr = pDirent->FileName + sizeof(pDirent->FileName) / sizeof(pDirent->FileName[0]);
If you feel like the New Year just came, and you missed the first half of January, then all this ...