From 378461b5257bbdef75dec0a30e3d2957be2a455d Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 26 Jul 2015 16:28:04 -0400 Subject: [PATCH] Cleared compiler error when compiling with "-DDEBUG" --- strciphr.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/strciphr.h b/strciphr.h index 9485e3ce..e685cfb3 100644 --- a/strciphr.h +++ b/strciphr.h @@ -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;