[Libreoffice-commits] core.git: xmloff/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Tue Sep 8 10:38:45 UTC 2020
xmloff/source/chart/transporttypes.hxx | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit aeda22ce8f81c9b79a2d15deb6dcf4ffdf2dcf37
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Tue Sep 8 10:23:09 2020 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Tue Sep 8 12:38:03 2020 +0200
cid#1466654 Uninitialized scalar field
Change-Id: Ic8760df2b5ddbe281aa8e6c21a79eb5675274650
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102228
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/xmloff/source/chart/transporttypes.hxx b/xmloff/source/chart/transporttypes.hxx
index 67deb3748cb9..28527c6c06f8 100644
--- a/xmloff/source/chart/transporttypes.hxx
+++ b/xmloff/source/chart/transporttypes.hxx
@@ -199,6 +199,8 @@ struct DataRowPointStyle
// ctor for use in import of <chart:data-label> as child of <chart:series>
DataRowPointStyle(StyleType eType, const OUString& sStyleName, sal_Int32 nAttachedAxis = 0)
: meType(eType)
+ , m_nPointIndex(0)
+ , m_nPointRepeat(0)
, msStyleName(sStyleName)
, mnAttachedAxis(nAttachedAxis)
, mbSymbolSizeForSeriesIsMissingInFile(false)
More information about the Libreoffice-commits
mailing list