Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
zip2john: avoid usage of uninit members of ctx
`if (ctx.archive.zip64) {` is used uninitialized if `ctx.archive.zip64 = zip64;` is not executed. Memset'ing the whole struct at the beginning of the function avoids this problem.
- Loading branch information