From ebfa1e6c86037c4143d2ced2da5b5431e8e7e7db Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 21 Sep 2013 12:36:43 +0100 Subject: CID#707598 uninitialized scalar values Change-Id: Id3c6488cfda25ab809bf554216bf2e5161456be0 --- xmlhelp/source/treeview/tvread.cxx | 1 + 1 file changed, 1 insertion(+) (limited to 'xmlhelp') 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 -- cgit