From bb3276389e445117d1592d31a777070381aefa5f Mon Sep 17 00:00:00 2001 From: Thomas Guyard Date: Thu, 3 Mar 2016 15:40:16 +0100 Subject: remove unwanted assert --- asn.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'asn.cpp') diff --git a/asn.cpp b/asn.cpp index fa1695af..c4d617d6 100644 --- a/asn.cpp +++ b/asn.cpp @@ -405,14 +405,14 @@ void BERGeneralDecoder::Init(byte asnTag) BERGeneralDecoder::~BERGeneralDecoder() { - try // avoid throwing in constructor + try // avoid throwing in destructor { if (!m_finished) MessageEnd(); } catch (const Exception&) { - assert(0); + // assert(0); } } -- cgit v1.2.1