diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2007-07-05 06:59:14 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2007-07-05 06:59:14 +0000 |
| commit | 0278f1c0a34a4552bcdd1c68c765f52f30ee7f7f (patch) | |
| tree | e26f626165db372ee12486aa55144e5c4f9b4588 /sys | |
| parent | 027307909713ffe0e57a943c96a28ea544a51287 (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/opencrypto/cast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/opencrypto/cast.c b/sys/opencrypto/cast.c index a16ab7d9fa4b..7474b3681f87 100644 --- a/sys/opencrypto/cast.c +++ b/sys/opencrypto/cast.c @@ -131,7 +131,7 @@ u_int32_t t, l, r; void cast_setkey(cast_key* key, u_int8_t* rawkey, int keybytes) { -u_int32_t t[4], z[4], x[4]; +u_int32_t t[4] = {0, 0, 0, 0}, z[4] = {0, 0, 0, 0}, x[4]; int i; /* Set number of rounds to 12 or 16, depending on key length */ |
