Skip to content
Snippets Groups Projects
Commit 4eafa9fe authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Back out fix. Needs review.

parent 3952bc8e
No related branches found
No related tags found
No related merge requests found
......@@ -68,8 +68,8 @@ ldap_SHA1Transform( uint32 *state, const unsigned char *buffer )
CHAR64LONG16 *block;
#ifdef SHA1HANDSOFF
CHAR64LONG16 workspace;
block = &workspace;
static unsigned char workspace[64];
block = (CHAR64LONG16 *)workspace;
(void)memcpy(block, buffer, 64);
#else
block = (CHAR64LONG16 *)buffer;
......
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