diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-12-11 11:37:06 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-12-11 11:37:06 +0100 |
commit | 8e5efa50aa788e3680a07cc02f0d2d522d98f03b (patch) | |
tree | 93874bc2d813a172d5bba342a8654fab55a3fc9e /csharp/src/Ice/ConnectionFactory.cs | |
parent | Disable FD limit testing on Android, potential fix for #315 (diff) | |
download | ice-8e5efa50aa788e3680a07cc02f0d2d522d98f03b.tar.bz2 ice-8e5efa50aa788e3680a07cc02f0d2d522d98f03b.tar.xz ice-8e5efa50aa788e3680a07cc02f0d2d522d98f03b.zip |
Fixed bogus incoming connection factory assert, fixes #301
Diffstat (limited to 'csharp/src/Ice/ConnectionFactory.cs')
-rw-r--r-- | csharp/src/Ice/ConnectionFactory.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/src/Ice/ConnectionFactory.cs b/csharp/src/Ice/ConnectionFactory.cs index 786d031e24d..f252d10dbb6 100644 --- a/csharp/src/Ice/ConnectionFactory.cs +++ b/csharp/src/Ice/ConnectionFactory.cs @@ -1521,7 +1521,7 @@ namespace IceInternal return; } - Debug.Assert(_state == StateClosed); + Debug.Assert(_state >= StateClosed); setState(StateFinished); } } |