diff options
Diffstat (limited to 'src/hash/md4_x86_32')
-rw-r--r-- | src/hash/md4_x86_32/md4_x86_32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash/md4_x86_32/md4_x86_32.cpp b/src/hash/md4_x86_32/md4_x86_32.cpp index 750e65a95..ed3f72fc9 100644 --- a/src/hash/md4_x86_32/md4_x86_32.cpp +++ b/src/hash/md4_x86_32/md4_x86_32.cpp @@ -26,7 +26,7 @@ void MD4_X86_32::compress_n(const byte input[], size_t blocks) { for(size_t i = 0; i != blocks; ++i) { - botan_md4_x86_32_compress(digest, input, M); + botan_md4_x86_32_compress(&digest[0], input, &M[0]); input += hash_block_size(); } } |