This commit is contained in:
ian.mcgreer%sun.com 2003-05-09 18:12:11 +00:00
Родитель ef069487a5
Коммит f11e523f03
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -476,7 +476,7 @@ MD5_Update(MD5Context *cx, const unsigned char *input, unsigned int inputLen)
#else
if ((ptrdiff_t)input & 0x3) {
/* buffer not aligned, copy it to force alignment */
memcpy(cx->inBuf, buf, MD5_BUFFER_SIZE);
memcpy(cx->inBuf, input, MD5_BUFFER_SIZE);
wBuf = cx->u.w;
} else {
/* buffer is aligned */