Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/md5.c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-04-12 22:25:32 +0400
committerFelix Fietkau <nbd@openwrt.org>2014-04-12 22:25:32 +0400
commitb3a6939f386f5a8f7b307211b15b939167d92a10 (patch)
tree0362456faeaebb44545e3487cdb1b390c5291793 /md5.c
parent31b2d244fdd9e232b9686c1ffd833518b712d884 (diff)
md5: remove unnecessary variable change
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'md5.c')
-rw-r--r--md5.c1
1 files changed, 0 insertions, 1 deletions
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;