Index: libcfa/src/concurrency/channel.hfa
===================================================================
--- libcfa/src/concurrency/channel.hfa	(revision 2dfdae3144c813f6364c134d7ef6550688eb0f50)
+++ libcfa/src/concurrency/channel.hfa	(revision 00b046fe26481dcde4d603f4448f97e75a58008f)
@@ -340,6 +340,6 @@
     unlock( mutex_lock );
 
-    // only return true when not special OR case, not exceptional calse and status is SAT
-    return ( node.extra == 0p || !node.park_counter ) ? false : *node.clause_status == __SELECT_SAT;
+    // only return true when not special OR case and status is SAT
+    return !node.park_counter ? false : *node.clause_status == __SELECT_SAT;
 }
 
