diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-09-15 16:54:34 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-09-15 16:54:34 +0200 |
commit | b8440f4a023069e31f0af75dd9c15af3c3f9a26c (patch) | |
tree | 5f6869ea0f328e114338121cc2bd2f46d7a6e247 /src/modules/m_ripemd160.cpp | |
parent | d743bdf338d63e032f3ecb8518e00ea4ff1345ed (diff) |
Work around STB_GNU_UNIQUE symbols not allowing module unmap
Diffstat (limited to 'src/modules/m_ripemd160.cpp')
-rw-r--r-- | src/modules/m_ripemd160.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/m_ripemd160.cpp b/src/modules/m_ripemd160.cpp index 6ceb4b481..04c27e83d 100644 --- a/src/modules/m_ripemd160.cpp +++ b/src/modules/m_ripemd160.cpp @@ -159,6 +159,9 @@ typedef uint32_t dword; class RIProv : public HashProvider { + /** Final hash value + */ + byte hashcode[RMDsize/8]; void MDinit(dword *MDbuf, unsigned int* key) { @@ -416,7 +419,6 @@ class RIProv : public HashProvider { ServerInstance->Logs->Log("m_ripemd160", DEBUG, "RMD: '%s' length=%u", (const char*)message, length); dword MDbuf[RMDsize/32]; /* contains (A, B, C, D(E)) */ - static byte hashcode[RMDsize/8]; /* for final hash-value */ dword X[16]; /* current 16-word chunk */ unsigned int i; /* counter */ dword nbytes; /* # of bytes not yet processed */ |