prevent information leak off the stack

prevent leak of uninitialised stack data in hash_search
This commit is contained in:
Andrew Tridgell
2024-11-14 09:57:08 +11:00
parent 9119310d01
commit ce06002ce8

View File

@@ -147,6 +147,9 @@ static void hash_search(int f,struct sum_struct *s,
int more;
schar *map;
// prevent possible memory leaks
memset(sum2, 0, sizeof sum2);
/* want_i is used to encourage adjacent matches, allowing the RLL
* coding of the output to work more efficiently. */
want_i = 0;