summaryrefslogtreecommitdiff
path: root/framework/source/fwi
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-02-20 19:56:53 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-02-21 07:35:06 +0100
commitc7d59ad8772ffbc7b66a79797a30470a67b1b306 (patch)
tree9350d1eae39afffc437dd926a1f05c44ab2939c1 /framework/source/fwi
parent87f3a357d2a1aa00a4d55c0bc6a29f686fe024b6 (diff)
loplugin:subtlezeroinit: framework
Change-Id: I88871abd4b57debeb8002a25ef5f59f57e065803
Diffstat (limited to 'framework/source/fwi')
-rw-r--r--framework/source/fwi/classes/protocolhandlercache.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/fwi/classes/protocolhandlercache.cxx b/framework/source/fwi/classes/protocolhandlercache.cxx
index 0837083172c4..917990fef18d 100644
--- a/framework/source/fwi/classes/protocolhandlercache.cxx
+++ b/framework/source/fwi/classes/protocolhandlercache.cxx
@@ -90,8 +90,8 @@ HandlerCache::HandlerCache()
if (m_nRefCount==0)
{
- m_pHandler = new HandlerHash();
- m_pPattern = new PatternHash();
+ m_pHandler = new HandlerHash;
+ m_pPattern = new PatternHash;
m_pConfig = new HandlerCFGAccess(PACKAGENAME_PROTOCOLHANDLER);
m_pConfig->read(&m_pHandler,&m_pPattern);
m_pConfig->setCache(this);