diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2021-11-26 22:50:17 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2021-11-26 22:50:17 -0600 |
| commit | 93e5ef883c239ecb0c9b350123fd7df4d35b8c64 (patch) | |
| tree | dd8718818d344cd0b3223ac084aba18556beeb34 /src | |
| parent | 10a36f96f67181300b5c6827eafae8dfe2c854fa (diff) | |
| parent | c844e3d179e92f5e7197186b351962933b30709c (diff) | |
| download | monzero-gui-93e5ef883c239ecb0c9b350123fd7df4d35b8c64.tar.gz monzero-gui-93e5ef883c239ecb0c9b350123fd7df4d35b8c64.tar.xz monzero-gui-93e5ef883c239ecb0c9b350123fd7df4d35b8c64.zip | |
Merge pull request #3735
c844e3d zxcvbn: fix buffer overflow (selsta)
Diffstat (limited to 'src')
| -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; /********************************************************************************** |
