diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-11 12:48:21 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-11 14:33:35 +0000 |
commit | 4eee115824e8eec8c824f72253d86caf593e0e11 (patch) | |
tree | 32b916918babde3c60ad5219561aacca3a57757d /xmloff | |
parent | d69c4535a156799544b3ff9aa7b695911909a1f7 (diff) |
coverity#708722 Uninitialized scalar field
Change-Id: I553f573914a60c77184403cdf0478cb5b442475a
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/text/txtparai.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmloff/source/text/txtparai.cxx b/xmloff/source/text/txtparai.cxx index 75a856d91516..8f858c96dcf5 100644 --- a/xmloff/source/text/txtparai.cxx +++ b/xmloff/source/text/txtparai.cxx @@ -115,6 +115,7 @@ XMLCharContext::XMLCharContext( SvXMLImportContext( rImp, nPrfx, rLName ) ,m_nControl(nControl) ,m_nCount(0) + ,m_c(0) { } |