diff options
Diffstat (limited to 'code')
-rw-r--r-- | code/qcommon/md4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/code/qcommon/md4.c b/code/qcommon/md4.c index 2501b2b..838b062 100644 --- a/code/qcommon/md4.c +++ b/code/qcommon/md4.c @@ -159,10 +159,10 @@ static void mdfour_update(struct mdfour *md, byte *in, int n) { uint32_t M[16]; - if (n == 0) mdfour_tail(in, n); - m = md; + if (n == 0) mdfour_tail(in, n); + while (n >= 64) { copy64(M, in); mdfour64(M); |