diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-03-15 20:05:31 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-03-15 20:05:31 +0100 |
commit | 2e4ba353940e5ee8344be331ac40d5da92030213 (patch) | |
tree | 7f6e25a432541202f2800bbe42b022cbfa3cbcdb /cpp/src/Ice/Network.cpp | |
parent | ICE-8703 - Removing PHP_DEBUG config (diff) | |
download | ice-2e4ba353940e5ee8344be331ac40d5da92030213.tar.bz2 ice-2e4ba353940e5ee8344be331ac40d5da92030213.tar.xz ice-2e4ba353940e5ee8344be331ac40d5da92030213.zip |
Potential UWP fix to solve controller crashes (ICE-8713)
Diffstat (limited to 'cpp/src/Ice/Network.cpp')
-rwxr-xr-x | cpp/src/Ice/Network.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Network.cpp b/cpp/src/Ice/Network.cpp index 9b08d7b9fc7..a04619e84e1 100755 --- a/cpp/src/Ice/Network.cpp +++ b/cpp/src/Ice/Network.cpp @@ -900,7 +900,7 @@ IceInternal::NativeInfo::queueOperation(SocketOperation op, IAsyncOperation<unsi { AsyncInfo* info = getAsyncInfo(op); Windows::Foundation::AsyncStatus status = operation->Status; - if (status == Windows::Foundation::AsyncStatus::Completed) + if(status == Windows::Foundation::AsyncStatus::Completed) { // // NOTE: it's important to modify the count _before_ calling the completion handler |