mirror of
https://github.com/mangosfour/server.git
synced 2025-12-22 13:37:08 +00:00
[8633] Fix possible build error at ASSERT redefine.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
85d8aaccd8
commit
fd48113941
2 changed files with 2 additions and 2 deletions
|
|
@ -46,7 +46,7 @@ void HmacHash::Finalize()
|
|||
{
|
||||
uint32 length = 0;
|
||||
HMAC_Final(&m_ctx, (uint8*)m_digest, &length);
|
||||
ASSERT(length == SHA_DIGEST_LENGTH)
|
||||
ASSERT(length == SHA_DIGEST_LENGTH);
|
||||
}
|
||||
|
||||
uint8 *HmacHash::ComputeHash(BigNumber *bn)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue