diff options
Diffstat (limited to 'externals/grill')
-rwxr-xr-x | externals/grill/flext/source/flqueue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/grill/flext/source/flqueue.cpp b/externals/grill/flext/source/flqueue.cpp index b1adfb24..13b45c5c 100755 --- a/externals/grill/flext/source/flqueue.cpp +++ b/externals/grill/flext/source/flqueue.cpp @@ -158,7 +158,7 @@ public: // \note PD sys lock must already be held by caller inline void Send() const { - FLEXT_ASSERT(msg.Ok()); + if(!msg.Ok()) return; // Empty! const Msg *m = &msg; do { |