diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-07-19 23:21:43 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-07-19 23:21:43 +0000 |
commit | 07c794c72093eea3f1d24b2ee32361a5d19c5c28 (patch) | |
tree | 75706dba073aba7581cc08da25b5abe3866bede6 /cpp/src | |
parent | moving from std::string to CORBA::String_var (diff) | |
download | ice-07c794c72093eea3f1d24b2ee32361a5d19c5c28.tar.bz2 ice-07c794c72093eea3f1d24b2ee32361a5d19c5c28.tar.xz ice-07c794c72093eea3f1d24b2ee32361a5d19c5c28.zip |
another bug fix for NullHandleException in initialize(void)
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/CommunicatorI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/CommunicatorI.cpp b/cpp/src/Ice/CommunicatorI.cpp index 16763994f62..1f166743b13 100644 --- a/cpp/src/Ice/CommunicatorI.cpp +++ b/cpp/src/Ice/CommunicatorI.cpp @@ -269,7 +269,7 @@ Ice::CommunicatorI::CommunicatorI(const InitializationData& initData) gcTraceLevel = _instance->traceLevels()->gc; gcTraceCat = _instance->traceLevels()->gcCat; gcLogger = _instance->initializationData().logger; - gcInterval = initData.properties->getPropertyAsInt("Ice.GC.Interval"); + gcInterval = _instance->initializationData().properties->getPropertyAsInt("Ice.GC.Interval"); gcOnce = false; } if(++communicatorCount == 1) |