remove unwanted assert

pull/142/head
Thomas Guyard 2016-03-03 15:40:16 +01:00
parent 1743b976f7
commit bb3276389e
1 changed files with 2 additions and 2 deletions

View File

@ -405,14 +405,14 @@ void BERGeneralDecoder::Init(byte asnTag)
BERGeneralDecoder::~BERGeneralDecoder() BERGeneralDecoder::~BERGeneralDecoder()
{ {
try // avoid throwing in constructor try // avoid throwing in destructor
{ {
if (!m_finished) if (!m_finished)
MessageEnd(); MessageEnd();
} }
catch (const Exception&) catch (const Exception&)
{ {
assert(0); // assert(0);
} }
} }