summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2006-07-19 23:21:43 +0000
committerMark Spruiell <mes@zeroc.com>2006-07-19 23:21:43 +0000
commit07c794c72093eea3f1d24b2ee32361a5d19c5c28 (patch)
tree75706dba073aba7581cc08da25b5abe3866bede6 /cpp/src
parentmoving from std::string to CORBA::String_var (diff)
downloadice-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.cpp2
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)