Merge pull request #3735

c844e3d zxcvbn: fix buffer overflow (selsta)
This commit is contained in:
luigi1111 2021-11-26 22:50:17 -06:00
commit 93e5ef883c
No known key found for this signature in database
GPG key ID: F4ACA0183641E010

View file

@ -516,7 +516,7 @@ typedef struct
uint8_t LeetCnv[sizeof L33TCnv / LEET_NORM_MAP_SIZE + 1];
/* uint8_t LeetChr[3]; */
uint8_t First;
uint8_t PossChars[48];
uint8_t PossChars[49];
} DictWork_t;
/**********************************************************************************