diff --git a/common/crapto1/crypto1.c b/common/crapto1/crypto1.c index 19b71cbb..716410b6 100644 --- a/common/crapto1/crypto1.c +++ b/common/crapto1/crypto1.c @@ -47,6 +47,7 @@ struct Crypto1State * crypto1_create(uint64_t key) struct Crypto1State *s = malloc(sizeof(*s)); int i; + memset(s, 0x0, sizeof(*s)); for(i = 47;s && i > 0; i -= 2) { s->odd = s->odd << 1 | BIT(key, (i - 1) ^ 7); s->even = s->even << 1 | BIT(key, i ^ 7);