summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-09-21 12:36:43 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-09-21 12:36:43 +0100
commitebfa1e6c86037c4143d2ced2da5b5431e8e7e7db (patch)
tree49d2533a26ab9aebe120b36fe0a090f21f51e4a2 /xmlhelp
parentfe9cce9453ca0e1aac77834af8160f0d11887a55 (diff)
CID#707598 uninitialized scalar values
Change-Id: Id3c6488cfda25ab809bf554216bf2e5161456be0
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/treeview/tvread.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/xmlhelp/source/treeview/tvread.cxx b/xmlhelp/source/treeview/tvread.cxx
index 0066281fd4ca..c0c62fcd24a4 100644
--- a/xmlhelp/source/treeview/tvread.cxx
+++ b/xmlhelp/source/treeview/tvread.cxx
@@ -183,6 +183,7 @@ ConfigData::ConfigData()
vendVersion("%VENDORVERSION"),
vendShort("%VENDORSHORT")
{
+ memset(m_vAdd, 0, sizeof(m_vAdd));
}
void SAL_CALL ConfigData::replaceName( OUString& oustring ) const