diff options
author | Matthew Newhook <matthew@zeroc.com> | 2007-06-07 06:01:29 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2007-06-07 06:01:29 +0000 |
commit | 901e6093a9c85defe340de46cd39b0a9e5376c19 (patch) | |
tree | a496a60d5b58d83c85b7d20a3c354b53542abdb9 /cppe/src/IceE/Instance.cpp | |
parent | http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=2231. Fixed VC6 bug with (diff) | |
download | ice-901e6093a9c85defe340de46cd39b0a9e5376c19.tar.bz2 ice-901e6093a9c85defe340de46cd39b0a9e5376c19.tar.xz ice-901e6093a9c85defe340de46cd39b0a9e5376c19.zip |
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=2231.
Diffstat (limited to 'cppe/src/IceE/Instance.cpp')
-rw-r--r-- | cppe/src/IceE/Instance.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppe/src/IceE/Instance.cpp b/cppe/src/IceE/Instance.cpp index 6c6b29a5c88..567813a0e01 100644 --- a/cppe/src/IceE/Instance.cpp +++ b/cppe/src/IceE/Instance.cpp @@ -470,7 +470,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)) { |