From 046ae403ba9b2d20889eb09cfa884aa324575d45 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Sun, 6 Dec 2020 15:16:49 -0500 Subject: [PATCH] Remove inappropriate assertion... ... Errors reported by sqlite are not conditions that should be provably impossible. --- src/DBConnection.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/DBConnection.cpp b/src/DBConnection.cpp index 5eedbbb77..5c2ab71ef 100644 --- a/src/DBConnection.cpp +++ b/src/DBConnection.cpp @@ -80,8 +80,6 @@ void DBConnection::SetDBError( ? Verbatim(sqlite3_errmsg(DB())) : libraryError; wxLogDebug(wxT(" Lib error: %s"), mpErrors->mLibraryError.Debug()); printf(" Lib error: %s", mpErrors->mLibraryError.Debug().mb_str().data()); - - wxASSERT(false); } bool DBConnection::Open(const char *fileName)