diff options
| author | selsta <selsta@sent.at> | 2021-11-15 08:24:28 +0100 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2021-11-15 08:24:58 +0100 |
| commit | c844e3d179e92f5e7197186b351962933b30709c (patch) | |
| tree | 30d0355152b01c03b138932a796a2d832cd75473 | |
| parent | ecf5c501d61bf5f85fb69fd9136cd0235f97f7b8 (diff) | |
| download | monzero-gui-c844e3d179e92f5e7197186b351962933b30709c.tar.gz monzero-gui-c844e3d179e92f5e7197186b351962933b30709c.tar.xz monzero-gui-c844e3d179e92f5e7197186b351962933b30709c.zip | |
zxcvbn: fix buffer overflow
Original patch by hannob
| -rw-r--r-- | src/zxcvbn-c/zxcvbn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zxcvbn-c/zxcvbn.c b/src/zxcvbn-c/zxcvbn.c index f9319aaf..ef60849c 100644 --- a/src/zxcvbn-c/zxcvbn.c +++ b/src/zxcvbn-c/zxcvbn.c @@ -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; /********************************************************************************** |
