diff options
author | Jose <jose@zeroc.com> | 2014-11-28 09:44:29 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-11-28 09:44:29 +0100 |
commit | 9eab1a1cf50c82d28aa48723c7eccadeeb0019d9 (patch) | |
tree | 7bbf811bf0d3dd2b110aba387708d0e0d5cdb990 /cpp/src/Ice/Outgoing.cpp | |
parent | Fixed (ICE-6006) - Cannot run java (and probably other) tests with no C++ com... (diff) | |
download | ice-9eab1a1cf50c82d28aa48723c7eccadeeb0019d9.tar.bz2 ice-9eab1a1cf50c82d28aa48723c7eccadeeb0019d9.tar.xz ice-9eab1a1cf50c82d28aa48723c7eccadeeb0019d9.zip |
Fix (ICE-5991) - Ice/timeout failure with ws Windows 64
Diffstat (limited to 'cpp/src/Ice/Outgoing.cpp')
-rw-r--r-- | cpp/src/Ice/Outgoing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Outgoing.cpp b/cpp/src/Ice/Outgoing.cpp index ee9464c28a8..9589f724f43 100644 --- a/cpp/src/Ice/Outgoing.cpp +++ b/cpp/src/Ice/Outgoing.cpp @@ -668,7 +668,7 @@ FlushBatch::invoke() // In this case, the exception should be set on the Outgoing. // Monitor<Mutex>::Lock sync(_monitor); - while(!_exception.get()) + while(!_exception.get() && !_sent) { _monitor.wait(); } |