From: Felix Fietkau Date: Sat, 12 Apr 2014 18:25:32 +0000 (+0200) Subject: md5: remove unnecessary variable change X-Git-Url: http://git.openwrt.org//?a=commitdiff_plain;h=b3a6939f386f5a8f7b307211b15b939167d92a10;p=project%2Flibubox.git md5: remove unnecessary variable change Signed-off-by: Felix Fietkau --- diff --git a/md5.c b/md5.c index f8d490f..c9064dc 100644 --- a/md5.c +++ b/md5.c @@ -113,7 +113,6 @@ static void md5_hash_block(const void *buffer, md5_ctx_t *ctx) for (i = 0; i < 16; i++) { cwp[i] = SWAP_LE32(words[i]); } - words += 16; pc = C_array; pp = P_array;