diff options
author | Matthew Newhook <matthew@zeroc.com> | 2007-06-07 05:58:10 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2007-06-07 05:58:10 +0000 |
commit | 51f8b45557c6b28020c934cc9361b5c47e3de9d9 (patch) | |
tree | aa271c661eadbebb791a77c8e11f2a2f1323f50d /cpp/src/Ice/Instance.cpp | |
parent | http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=2231 (diff) | |
download | ice-51f8b45557c6b28020c934cc9361b5c47e3de9d9.tar.bz2 ice-51f8b45557c6b28020c934cc9361b5c47e3de9d9.tar.xz ice-51f8b45557c6b28020c934cc9361b5c47e3de9d9.zip |
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=2231. Fixed VC6 bug with
test/Freeze/complex test
Diffstat (limited to 'cpp/src/Ice/Instance.cpp')
-rw-r--r-- | cpp/src/Ice/Instance.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Instance.cpp b/cpp/src/Ice/Instance.cpp index c450d48046c..d4ae7b27c76 100644 --- a/cpp/src/Ice/Instance.cpp +++ b/cpp/src/Ice/Instance.cpp @@ -608,7 +608,7 @@ IceInternal::Instance::Instance(const CommunicatorPtr& communicator, const Initi Int num = _initData.properties->getPropertyAsIntWithDefault("Ice.MessageSizeMax", defaultMessageSizeMax); if(num < 1) { - const_cast<size_t&>(_messageSizeMax) = defaultMessageSizeMax * 1024; // Ignore stupid values. + const_cast<size_t&>(_messageSizeMax) = defaultMessageSizeMax * 1024; // Ignore non-sensical values. } else if(static_cast<size_t>(num) > (size_t)(0x7fffffff / 1024)) { |