diff options
author | Michi Henning <michi@zeroc.com> | 2003-03-10 07:04:26 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-03-10 07:04:26 +0000 |
commit | af8d634e95fcd6fa2b41f6853ff98c6875fafca6 (patch) | |
tree | fb70b0e77885c0ec2962013fe793cb1f432cc997 /cpp/src | |
parent | Updated incorrect doc for -v -e option for the server side for UDP (diff) | |
download | ice-af8d634e95fcd6fa2b41f6853ff98c6875fafca6.tar.bz2 ice-af8d634e95fcd6fa2b41f6853ff98c6875fafca6.tar.xz ice-af8d634e95fcd6fa2b41f6853ff98c6875fafca6.zip |
Added missing member initializers for VC++ .NET.
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/ThreadPool.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/src/Ice/ThreadPool.cpp b/cpp/src/Ice/ThreadPool.cpp index 855cdaa622d..ed8873e560a 100644 --- a/cpp/src/Ice/ThreadPool.cpp +++ b/cpp/src/Ice/ThreadPool.cpp @@ -33,6 +33,9 @@ void IceInternal::decRef(ThreadPool* p) { p->__decRef(); } IceInternal::ThreadPool::ThreadPool(const InstancePtr& instance, const string& prefix, int timeout) : _instance(instance), _destroyed(false), + _size(0), + _sizeMax(0), + _sizeWarn(0), _prefix(prefix), _inUse(0), _lastFd(INVALID_SOCKET), |