diff options
Diffstat (limited to 'src/network/connection.h')
-rw-r--r-- | src/network/connection.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/network/connection.h b/src/network/connection.h index 77d7edac0..33b7d0f7f 100644 --- a/src/network/connection.h +++ b/src/network/connection.h @@ -681,7 +681,7 @@ class Peer { virtual ~Peer() { JMutexAutoLock usage_lock(m_exclusive_access_mutex); - assert(m_usage == 0); + FATAL_ERROR_IF(m_usage != 0, "Reference counting failure"); }; // Unique id of the peer @@ -926,7 +926,7 @@ public: void Trigger(); void setParent(Connection* parent) { - assert(parent != NULL); + assert(parent != NULL); // Pre-condition m_connection = parent; } @@ -980,7 +980,7 @@ public: void * Thread (); void setParent(Connection* parent) { - assert(parent != NULL); + assert(parent != NULL); // Pre-condition m_connection = parent; } |