$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r50194 - trunk/boost/interprocess/ipc
From: igaztanaga_at_[hidden]
Date: 2008-12-08 11:27:12
Author: igaztanaga
Date: 2008-12-08 11:27:11 EST (Mon, 08 Dec 2008)
New Revision: 50194
URL: http://svn.boost.org/trac/boost/changeset/50194
Log:
Ticket #2570 again
Text files modified: 
   trunk/boost/interprocess/ipc/message_queue.hpp |     3 ++-                                     
   1 files changed, 2 insertions(+), 1 deletions(-)
Modified: trunk/boost/interprocess/ipc/message_queue.hpp
==============================================================================
--- trunk/boost/interprocess/ipc/message_queue.hpp	(original)
+++ trunk/boost/interprocess/ipc/message_queue.hpp	2008-12-08 11:27:11 EST (Mon, 08 Dec 2008)
@@ -557,10 +557,11 @@
 
             case timed :
                do{
-                  if(!p_hdr->m_cond_recv.timed_wait(lock, abs_time))
+                  if(!p_hdr->m_cond_recv.timed_wait(lock, abs_time)){
                      if(p_hdr->is_empty())
                         return false;
                      break;
+                  }
                }
                while (p_hdr->is_empty());
             break;