diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-04-12 15:08:12 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-04-12 15:08:12 +0000 |
commit | 7c5db47e825684881b0aff96f6151063ab60ec56 (patch) | |
tree | 7904cb72e9ba087d66fd2199de57685c7dc9d4c6 /cpp/src/IceGrid/DescriptorParser.cpp | |
parent | Fix (diff) | |
download | ice-7c5db47e825684881b0aff96f6151063ab60ec56.tar.bz2 ice-7c5db47e825684881b0aff96f6151063ab60ec56.tar.xz ice-7c5db47e825684881b0aff96f6151063ab60ec56.zip |
Fix
Diffstat (limited to 'cpp/src/IceGrid/DescriptorParser.cpp')
-rw-r--r-- | cpp/src/IceGrid/DescriptorParser.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/IceGrid/DescriptorParser.cpp b/cpp/src/IceGrid/DescriptorParser.cpp index 7730f6d6604..e734711e100 100644 --- a/cpp/src/IceGrid/DescriptorParser.cpp +++ b/cpp/src/IceGrid/DescriptorParser.cpp @@ -502,6 +502,7 @@ DescriptorHandler::endElement(const string& name, int line, int column) assert(_currentNode.get()); _currentNode->addServer(_currentServer->getDescriptor()); } + _currentServer->finish(); _currentServer.reset(0); _currentCommunicator = 0; } @@ -522,6 +523,7 @@ DescriptorHandler::endElement(const string& name, int line, int column) { _currentTemplate->setDescriptor(_currentService->getDescriptor()); } + _currentService->finish(); _currentService.reset(0); _currentCommunicator = _currentServer.get(); } |