diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-02-19 12:28:19 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-02-19 12:28:19 +0100 |
commit | 55dd83f539d9fe28a7edf75a5effcbcf7d669d9f (patch) | |
tree | 2a069eb8be73af72eb321de64fad9b4ed7040996 /cpp/test | |
parent | Ice for Java doesn't build with ICE_BIN_DIST=cpp (diff) | |
download | ice-55dd83f539d9fe28a7edf75a5effcbcf7d669d9f.tar.bz2 ice-55dd83f539d9fe28a7edf75a5effcbcf7d669d9f.tar.xz ice-55dd83f539d9fe28a7edf75a5effcbcf7d669d9f.zip |
Fixed iOS controller crashes
Diffstat (limited to 'cpp/test')
-rw-r--r-- | cpp/test/ios/controller/Bundle/ControllerI.mm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/test/ios/controller/Bundle/ControllerI.mm b/cpp/test/ios/controller/Bundle/ControllerI.mm index e0cbe7cfd64..82fa37ff9eb 100644 --- a/cpp/test/ios/controller/Bundle/ControllerI.mm +++ b/cpp/test/ios/controller/Bundle/ControllerI.mm @@ -159,8 +159,7 @@ MainHelperI::shutdown() bool MainHelperI::redirect() { - //return _dll.find("client") != string::npos || _dll.find("collocated") != string::npos; - return true; + return _dll.find("client") != string::npos || _dll.find("collocated") != string::npos; } void |