Skip to content
Snippets Groups Projects
Commit cec81190 authored by John Romein's avatar John Romein
Browse files

BugID: 225

Fixed assertion.
parent fcb006f1
No related branches found
No related tags found
No related merge requests found
...@@ -93,7 +93,7 @@ Connection::State BGLConnection::write() ...@@ -93,7 +93,7 @@ Connection::State BGLConnection::write()
DBGASSERTSTR(itsSourceDH != 0, "No source DataHolder set!"); DBGASSERTSTR(itsSourceDH != 0, "No source DataHolder set!");
DBGASSERTSTR(itsSourceDH->isInitialized(), DBGASSERTSTR(itsSourceDH->isInitialized(),
"Source dataholder has not been initialized!"); "Source dataholder has not been initialized!");
DBGASSERT(itsTransportHolder != 0); DBGASSERT(getTransportHolder() != 0);
DBGASSERT(itsSourceDH != 0); DBGASSERT(itsSourceDH != 0);
LOG_TRACE_COND_STR("Transport::write; call send with tag " << getTag()); LOG_TRACE_COND_STR("Transport::write; call send with tag " << getTag());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment