summaryrefslogtreecommitdiffstats
path: root/framework
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-22 19:27:03 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-22 19:27:03 +0000
commit7ac3a623798fd0f7ca0b8daa51b0005fc2a7eb05 (patch)
tree4c1a20392a54714347a1f86b79e7fc77f591d7c6 /framework
parentcoverity#1038295 Unchecked dynamic_cast (diff)
downloadcore-7ac3a623798fd0f7ca0b8daa51b0005fc2a7eb05.tar.gz
core-7ac3a623798fd0f7ca0b8daa51b0005fc2a7eb05.zip
coverity#738659 Uninitialized pointer field
Change-Id: I5d3ebc066f36f9cdcfb031a58ecb9c64ddea26c3
Diffstat (limited to 'framework')
-rw-r--r--framework/source/fwi/classes/protocolhandlercache.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/source/fwi/classes/protocolhandlercache.cxx b/framework/source/fwi/classes/protocolhandlercache.cxx
index 64ecf8bd8490..43b59e7e1f6e 100644
--- a/framework/source/fwi/classes/protocolhandlercache.cxx
+++ b/framework/source/fwi/classes/protocolhandlercache.cxx
@@ -176,7 +176,8 @@ void HandlerCache::takeOver(HandlerHash* pHandler, PatternHash* pPattern)
specifies the package name of the configuration data which should be used
*/
HandlerCFGAccess::HandlerCFGAccess( const OUString& sPackage )
- : ConfigItem( sPackage )
+ : ConfigItem(sPackage)
+ , m_pCache(0)
{
css::uno::Sequence< OUString > lListenPaths(1);
lListenPaths[0] = SETNAME_HANDLER;