Cleared compiler error when compiling with "-DDEBUG"

pull/35/head
Jeffrey Walton 2015-07-26 16:28:04 -04:00
parent b7de164d62
commit 378461b525
1 changed files with 2 additions and 0 deletions

View File

@ -201,7 +201,9 @@ struct CRYPTOPP_NO_VTABLE CFB_CipherConcretePolicy : public BASE
if (m_dir == ENCRYPTION)
{
if (m_input == NULL)
{
CRYPTOPP_ASSERT(m_output == NULL);
}
else
{
WordType ct = *(const WordType *)m_input ^ registerWord;