Skip to content
Snippets Groups Projects
Commit 364fd2f1 authored by Yang Tse's avatar Yang Tse
Browse files

build: remove unneeded cast to (void *)

parent 1cbe66fb
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@ static void MD4Update(MD4_CTX *context, const unsigned char *input,
/* Transform as many times as possible.
*/
if (inputLen >= partLen) {
memcpy((void *)&context->buffer[bufindex], (void *)input, partLen);
memcpy(&context->buffer[bufindex], input, partLen);
MD4Transform (context->state, context->buffer);
for (i = partLen; i + 63 < inputLen; i += 64)
......@@ -134,7 +134,7 @@ static void MD4Update(MD4_CTX *context, const unsigned char *input,
i = 0;
/* Buffer remaining input */
memcpy((void *)&context->buffer[bufindex], (void *)&input[i], inputLen-i);
memcpy(&context->buffer[bufindex], &input[i], inputLen-i);
}
/* MD4 padding. */
......
......@@ -205,7 +205,7 @@ static void MD5_Update (struct md5_ctx *context, /* context */
/* Transform as many times as possible. */
if(inputLen >= partLen) {
memcpy((void *)&context->buffer[bufindex], (void *)input, partLen);
memcpy(&context->buffer[bufindex], input, partLen);
MD5Transform(context->state, context->buffer);
for (i = partLen; i + 63 < inputLen; i += 64)
......@@ -217,7 +217,7 @@ static void MD5_Update (struct md5_ctx *context, /* context */
i = 0;
/* Buffer remaining input */
memcpy((void *)&context->buffer[bufindex], (void *)&input[i], inputLen-i);
memcpy(&context->buffer[bufindex], &input[i], inputLen-i);
}
/* MD5 finalization. Ends an MD5 message-digest operation, writing the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment