Failing CppunitTest_xmlsecurity_signing on Windows

Mike Kaganski mikekaganski at hotmail.com
Wed Apr 1 15:19:08 UTC 2020


Hi!

Since yesterday, `make CppunitTest_xmlsecurity_signing` fails for me
locally in x64 build on Windows (see attached log). Note repeated pattern:

> warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
> LL' The operation completed successfully.
> warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
> rocessKeyInfoNode' 1 ' ' The operation completed successfully.
> warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
> eNode' 1 ' ' The operation completed successfully.
> HEAP CORRUPTION DETECTED: after Normal block (#422125) at 0x000002453A914C40.
> CRT detected that the application wrote to memory after end of heap buffer.
> C:/lo/src/core/xmlsecurity/qa/unit/signing/signing.cxx:863:testSignatureLineOOXML::TestBody
> assertion failed
> - Expression: xSignatureInfo[0].SignatureIsValid

The problematic part seems to be inside
XMLSignature_MSCryptImpl::validate, where xmlSecKeysMngrPtr pMngr is
initialized using SecurityEnvironment_MSCryptImpl::createKeysManager,
then used to create signature context, then destroyed using
SecurityEnvironment_MSCryptImpl::destroyKeysManager (the latter emits
those HEAP CORRUPTION DETECTED in the last call to xmlFree that points
to usual free).

When the manager is created inside
SecurityEnvironment_MSCryptImpl::createKeysManager, its memory is
allocated in xmlSecKeysMngrCreate using a call to
xmlMalloc(sizeof(xmlSecKeysMngr)) in xmlsec external library, where
sizeof(xmlSecKeysMngr) is 48. When it continues initialization in
MSCryptoAppliedKeysMngrCreate (library xsec_xmlsec),
sizeof(xmlSecKeysMngr) is already 56, and assignment to keyMngr->getKey
writes past the allocated memory, which likely gets detected and
reported in the following deallocation.

The problem is what happened lately that caused the structure size
mismatch between the external library and xsec_xmlsec? One possibility
is the Visual Studio 2019 upgrade I made yesterday (now it's Version
16.5.2). Or maybe there was some other related change?

(I'm currently looking at xmlsecurity/inc/xmlsec-wrapper.h and
XMLSEC_NO_SIZE_T defined there, as Miklos pointed as possibly related.)

Does anyone has an idea what has actually caused this?

-- 
Best regards,
Mike Kaganski
-------------- next part --------------
$ make CppunitTest_xmlsecurity_signing
C:/cygwin64/opt/lo/bin/make -j 14 -rs -f C:/lo/src/core/Makefile.gbuild CppunitTest_xmlsecurity_signing
[CUT] xmlsecurity_signing
warn:sfx.appl:49312:46228:sfx2/source/appl/app.cxx:150: No DDE-Service possible. Error: 16399
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#422125) at 0x000002453A914C40.
CRT detected that the application wrote to memory after end of heap buffer.
C:/lo/src/core/xmlsecurity/qa/unit/signing/signing.cxx:863:testSignatureLineOOXML::TestBody
assertion failed
- Expression: xSignatureInfo[0].SignatureIsValid

testSignatureLineOOXML::TestBody finished in: 260ms
warn:sc:49312:46228:sc/source/filter/orcus/orcusfiltersimpl.cxx:137: Unable to load styles from xml file! boost::filesystem::file_size: □□□□□□□ □□ □□□□□□□ □□□□□
 □□□□□□□□□ □□□□: "C:\lo\src\build\instdir\share\calc\styles.xml"
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#866350) at 0x000002453B8B4350.
CRT detected that the application wrote to memory after end of heap buffer.
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
warn:sfx.control:49312:46228:sfx2/source/control/dispatch.cxx:1204: Childwindow slot missing: 25917
warn:legacy.osl:49312:46228:desktop/source/deployment/misc/dp_misc.cxx:68: OSL_ASSERT: ret->getHandle() != nullptr
warn:basic:49312:46228:basic/source/uno/namecont.cxx:966: Cannot access extensions!
warn:basic:49312:46228:basic/source/uno/namecont.cxx:966: Cannot access extensions!
warn:sfx.control:49312:46228:sfx2/source/control/dispatch.cxx:1204: Childwindow slot missing: 25917
C:/lo/src/core/xmlsecurity/qa/unit/signing/signing.cxx:643:test96097Calc::TestBody
assertion failed
- Expression: (nActual == SignatureState::OK || nActual == SignatureState::NOTVALIDATED || nActual == SignatureState::INVALID)
- 2

warn:svl.items:49312:46228:svl/source/items/itempool.cxx:396: old secondary pool: EditEngineItemPool of pool: XOutdevItemPool must be empty.
test96097Calc::TestBody finished in: 1694ms
warn:sdext.pdfimport:49312:46228:sdext/source/pdfimport/tree/pdfiprocessor.cxx:127: PDFIProcessor::setMiterLimit(): not supported by ODF
warn:sfx.doc:49312:46228:sfx2/source/doc/docfile.cxx:1709: No possibility to get readonly version of storage from medium!
warn:xmlsecurity.comp:49312:46228:xmlsecurity/source/component/documentdigitalsignatures.cxx:484: Error, no XStorage provided
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
warn:svl.items:49312:46228:svl/source/items/itempool.cxx:396: old secondary pool: EditEngineItemPool of pool: XOutdevItemPool must be empty.
testPDFNo::TestBody finished in: 551ms
warn:xmloff:49312:46228:sax/source/fastparser/fastparser.cxx:1267: unknown element meta:non-whitespace-character-count urn:oasis:names:tc:opendocument:xmlns:met
a:1.0
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#1986875) at 0x000002453E0BE780.
CRT detected that the application wrote to memory after end of heap buffer.
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
C:/lo/src/core/xmlsecurity/qa/unit/signing/signing.cxx:840:testXAdESGood::TestBody
assertion failed
- Expression: (nActual == SignatureState::NOTVALIDATED || nActual == SignatureState::OK)
- 2

testXAdESGood::TestBody finished in: 638ms
warn:xmloff:49312:46228:sax/source/fastparser/fastparser.cxx:1267: unknown element meta:non-whitespace-character-count urn:oasis:names:tc:opendocument:xmlns:met
a:1.0
warn:xmloff.core:49312:46228:xmloff/source/core/xmlimp.cxx:739: SvXMLImport::startElement: missing context for element draw:image
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#2326196) at 0x000002453DFBBE70.
CRT detected that the application wrote to memory after end of heap buffer.
warn:svgio:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:408: Unknown Base SvgToken <metadata> (!)
warn:svgio:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:408: Unknown Base SvgToken <rdf:RDF> (!)
warn:svgio:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:408: Unknown Base SvgToken <cc:Work> (!)
warn:svgio:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:408: Unknown Base SvgToken <dc:format> (!)
warn:svgio:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:408: Unknown Base SvgToken <dc:type> (!)
warn:svgio:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:408: Unknown Base SvgToken <dc:title> (!)
warn:svgio:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:408: Unknown Base SvgToken <sodipodi:namedview> (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgdocumenthandler.cxx:121: Unexpected token inside SVGTokenText (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:legacy.osl:49312:46228:svgio/source/svgreader/svgtextnode.cxx:212: Unexpected node in text token (!)
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#2347731) at 0x000002453DFC4290.
CRT detected that the application wrote to memory after end of heap buffer.
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#2453660) at 0x000002453E0196F0.
CRT detected that the application wrote to memory after end of heap buffer.
C:/lo/src/core/xmlsecurity/qa/unit/signing/signing.cxx:881:testSignatureLineODF::TestBody
assertion failed
- Expression: xSignatureInfo[0].SignatureIsValid

testSignatureLineODF::TestBody finished in: 584ms
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
testECDSA::TestBody finished in: 530ms
warn:xmloff:49312:46228:sax/source/fastparser/fastparser.cxx:1267: unknown element meta:non-whitespace-character-count urn:oasis:names:tc:opendocument:xmlns:met
a:1.0
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#2834793) at 0x000002453DFD0D20.
CRT detected that the application wrote to memory after end of heap buffer.
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
C:/lo/src/core/xmlsecurity/qa/unit/signing/signing.cxx:680:test96097Doc::TestBody
assertion failed
- Expression: (nActual == SignatureState::OK || nActual == SignatureState::NOTVALIDATED || nActual == SignatureState::INVALID)
- 2

test96097Doc::TestBody finished in: 415ms
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#2960993) at 0x000002453E636570.
CRT detected that the application wrote to memory after end of heap buffer.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#2965055) at 0x000002453E638330.
CRT detected that the application wrote to memory after end of heap buffer.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#2969840) at 0x000002453E639520.
CRT detected that the application wrote to memory after end of heap buffer.
testOOXMLRemove::TestBody finished in: 141ms
warn:xmloff:49312:46228:sax/source/fastparser/fastparser.cxx:1267: unknown element meta:non-whitespace-character-count urn:oasis:names:tc:opendocument:xmlns:met
a:1.0
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#3058915) at 0x000002453E0240B0.
CRT detected that the application wrote to memory after end of heap buffer.
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
C:/lo/src/core/xmlsecurity/qa/unit/signing/signing.cxx:531:testODFGood::TestBody
assertion failed
- Expression: (nActual == SignatureState::NOTVALIDATED || nActual == SignatureState::OK)
- 2

testODFGood::TestBody finished in: 421ms
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:291: xmlSecDSigCtxSign() '' 'xmlSecDSigCtxProcessSignatureN
ode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#3393382) at 0x000002453E7462B0.
CRT detected that the application wrote to memory after end of heap buffer.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#3397036) at 0x000002453E7488C0.
CRT detected that the application wrote to memory after end of heap buffer.
testDescription::TestBody finished in: 558ms
warn:sdext.pdfimport:49312:46228:sdext/source/pdfimport/tree/pdfiprocessor.cxx:127: PDFIProcessor::setMiterLimit(): not supported by ODF
warn:sfx.doc:49312:46228:sfx2/source/doc/docfile.cxx:1709: No possibility to get readonly version of storage from medium!
warn:xmlsecurity.comp:49312:46228:xmlsecurity/source/component/documentdigitalsignatures.cxx:484: Error, no XStorage provided
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
warn:svl.items:49312:46228:svl/source/items/itempool.cxx:396: old secondary pool: EditEngineItemPool of pool: XOutdevItemPool must be empty.
testPDFGood::TestBody finished in: 453ms
warn:xmloff:49312:46228:sax/source/fastparser/fastparser.cxx:1267: unknown element meta:non-whitespace-character-count urn:oasis:names:tc:opendocument:xmlns:met
a:1.0
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
testODFNo::TestBody finished in: 376ms
warn:xmloff:49312:46228:sax/source/fastparser/fastparser.cxx:1267: unknown element meta:non-whitespace-character-count urn:oasis:names:tc:opendocument:xmlns:met
a:1.0
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#3876787) at 0x000002453E1C8DE0.
CRT detected that the application wrote to memory after end of heap buffer.
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
testODFBroken::TestBody finished in: 423ms
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
testECDSAOOXML::TestBody finished in: 389ms
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:291: xmlSecDSigCtxSign() '' 'xmlSecDSigCtxProcessSignatureN
ode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#4384849) at 0x000002453EA62E50.
CRT detected that the application wrote to memory after end of heap buffer.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#4390060) at 0x000002453EA65BD0.
CRT detected that the application wrote to memory after end of heap buffer.
testOOXMLDescription::TestBody finished in: 471ms
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\mscng\digests.c:208: xmlSecMSCngDigestVerify() 'sha256' '' 12 'data a
nd digest do not match' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#4449859) at 0x000002453EA6DAB0.
CRT detected that the application wrote to memory after end of heap buffer.
warn:xmloff:49312:46228:sax/source/fastparser/fastparser.cxx:1267: unknown element xsi:type http://www.w3.org/2001/XMLSchema-instance
warn:xmloff:49312:46228:sax/source/fastparser/fastparser.cxx:1267: unknown element xsi:type http://www.w3.org/2001/XMLSchema-instance
warn:oox:49312:46228:oox/source/docprop/docprophandler.cxx:320: OOXMLDocPropHandler::startFastElement: unknown element 5621
warn:oox:49312:46228:oox/source/docprop/docprophandler.cxx:320: OOXMLDocPropHandler::startFastElement: unknown element 3198
warn:oox:49312:46228:oox/source/docprop/docprophandler.cxx:320: OOXMLDocPropHandler::startFastElement: unknown element 5621
warn:oox:49312:46228:oox/source/docprop/docprophandler.cxx:320: OOXMLDocPropHandler::startFastElement: unknown element 2749
warn:oox:49312:46228:oox/source/docprop/docprophandler.cxx:320: OOXMLDocPropHandler::startFastElement: unknown element 3198
warn:xmloff:49312:46228:sax/source/fastparser/fastparser.cxx:1267: unknown element w15:val http://schemas.microsoft.com/office/word/2012/wordml
warn:xmloff:49312:46228:sax/source/fastparser/fastparser.cxx:1195: unknown attribute vid={4A3C46E8-61CC-4603-A589-7422A47A8E4A}
warn:legacy.osl:49312:46228:oox/source/helper/storagebase.cxx:66: StorageBase::StorageBase - missing base input stream
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\mscng\digests.c:208: xmlSecMSCngDigestVerify() 'sha256' '' 12 'data a
nd digest do not match' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#4548741) at 0x000002453E73CBC0.
CRT detected that the application wrote to memory after end of heap buffer.
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
testOOXMLBroken::TestBody finished in: 539ms
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
testECDSAPDF::TestBody finished in: 369ms
warn:sdext.pdfimport:49312:46228:sdext/source/pdfimport/tree/pdfiprocessor.cxx:127: PDFIProcessor::setMiterLimit(): not supported by ODF
warn:sfx.doc:49312:46228:sfx2/source/doc/docfile.cxx:1709: No possibility to get readonly version of storage from medium!
warn:xmlsecurity.comp:49312:46228:xmlsecurity/source/component/documentdigitalsignatures.cxx:484: Error, no XStorage provided
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
warn:svl.items:49312:46228:svl/source/items/itempool.cxx:396: old secondary pool: EditEngineItemPool of pool: XOutdevItemPool must be empty.
testPDFBad::TestBody finished in: 453ms
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:291: xmlSecDSigCtxSign() '' 'xmlSecDSigCtxProcessSignatureN
ode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#5249302) at 0x000002453EEC69C0.
CRT detected that the application wrote to memory after end of heap buffer.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#5252978) at 0x000002453EEC7D70.
CRT detected that the application wrote to memory after end of heap buffer.
testXAdES::TestBody finished in: 571ms
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#5276468) at 0x000002453EDC0D30.
CRT detected that the application wrote to memory after end of heap buffer.
testOOXMLRemoveAll::TestBody finished in: 79ms
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#5283794) at 0x000002453EDBF0C0.
CRT detected that the application wrote to memory after end of heap buffer.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:291: xmlSecDSigCtxSign() '' 'xmlSecDSigCtxProcessSignatureN
ode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#5288807) at 0x000002453EDBE020.
CRT detected that the application wrote to memory after end of heap buffer.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#5293125) at 0x000002453EDC2C40.
CRT detected that the application wrote to memory after end of heap buffer.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#5295576) at 0x000002453EDC2150.
CRT detected that the application wrote to memory after end of heap buffer.
testXAdESNotype::TestBody finished in: 248ms
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#5341384) at 0x000002453EDD09A0.
CRT detected that the application wrote to memory after end of heap buffer.
warn:xmloff:49312:46228:sax/source/fastparser/fastparser.cxx:1267: unknown element xsi:type http://www.w3.org/2001/XMLSchema-instance
warn:xmloff:49312:46228:sax/source/fastparser/fastparser.cxx:1267: unknown element xsi:type http://www.w3.org/2001/XMLSchema-instance
warn:oox:49312:46228:oox/source/docprop/docprophandler.cxx:320: OOXMLDocPropHandler::startFastElement: unknown element 5621
warn:oox:49312:46228:oox/source/docprop/docprophandler.cxx:320: OOXMLDocPropHandler::startFastElement: unknown element 3198
warn:oox:49312:46228:oox/source/docprop/docprophandler.cxx:320: OOXMLDocPropHandler::startFastElement: unknown element 5621
warn:oox:49312:46228:oox/source/docprop/docprophandler.cxx:320: OOXMLDocPropHandler::startFastElement: unknown element 2749
warn:oox:49312:46228:oox/source/docprop/docprophandler.cxx:320: OOXMLDocPropHandler::startFastElement: unknown element 3198
warn:xmloff:49312:46228:sax/source/fastparser/fastparser.cxx:1267: unknown element w15:val http://schemas.microsoft.com/office/word/2012/wordml
warn:xmloff:49312:46228:sax/source/fastparser/fastparser.cxx:1195: unknown attribute vid={4A3C46E8-61CC-4603-A589-7422A47A8E4A}
warn:legacy.osl:49312:46228:oox/source/helper/storagebase.cxx:66: StorageBase::StorageBase - missing base input stream
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#5419714) at 0x000002453EE230F0.
CRT detected that the application wrote to memory after end of heap buffer.
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1087: WinSalFrame::SetIcon(): Could not load large icon !
warn:vcl:49312:46228:vcl/win/window/salframe.cxx:1088: WinSalFrame::SetIcon(): Could not load small icon !
C:/lo/src/core/xmlsecurity/qa/unit/signing/signing.cxx:572:testOOXMLPartial::TestBody
assertion failed
- Expression: (nActual == SignatureState::NOTVALIDATED_PARTIAL_OK || nActual == SignatureState::PARTIAL_OK)
- 2

testOOXMLPartial::TestBody finished in: 505ms
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#5551097) at 0x000002453EDD78C0.
CRT detected that the application wrote to memory after end of heap buffer.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:291: xmlSecDSigCtxSign() '' 'xmlSecDSigCtxProcessSignatureN
ode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#5557943) at 0x000002453EDBB3F0.
CRT detected that the application wrote to memory after end of heap buffer.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\mscng\digests.c:208: xmlSecMSCngDigestVerify() 'sha256' '' 12 'data a
nd digest do not match' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#5564176) at 0x000002453EDC64B0.
CRT detected that the application wrote to memory after end of heap buffer.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:793: xmlSecDSigCtxProcessKeyInfoNode() '' '' 45 'details=NU
LL' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:508: xmlSecDSigCtxProcessSignatureNode() '' 'xmlSecDSigCtxP
rocessKeyInfoNode' 1 ' ' The operation completed successfully.
warn:xmlsecurity.xmlsec:49312:46228:xmlsecurity/source/xmlsec/errorcallback.cxx:52: ..\src\xmldsig.c:346: xmlSecDSigCtxVerify() '' 'xmlSecDSigCtxProcessSignatur
eNode' 1 ' ' The operation completed successfully.
HEAP CORRUPTION DETECTED: after Normal block (#5568138) at 0x000002453EDC55D0.
CRT detected that the application wrote to memory after end of heap buffer.
testOOXMLAppend::TestBody finished in: 220ms
C:/lo/src/core/xmlsecurity/qa/unit/signing/signing.cxx(863) : error : Assertion
Test name: testSignatureLineOOXML::TestBody
assertion failed
- Expression: xSignatureInfo[0].SignatureIsValid

C:/lo/src/core/xmlsecurity/qa/unit/signing/signing.cxx(643) : error : Assertion
Test name: test96097Calc::TestBody
assertion failed
- Expression: (nActual == SignatureState::OK || nActual == SignatureState::NOTVALIDATED || nActual == SignatureState::INVALID)
- 2

C:/lo/src/core/xmlsecurity/qa/unit/signing/signing.cxx(840) : error : Assertion
Test name: testXAdESGood::TestBody
assertion failed
- Expression: (nActual == SignatureState::NOTVALIDATED || nActual == SignatureState::OK)
- 2

C:/lo/src/core/xmlsecurity/qa/unit/signing/signing.cxx(881) : error : Assertion
Test name: testSignatureLineODF::TestBody
assertion failed
- Expression: xSignatureInfo[0].SignatureIsValid

C:/lo/src/core/xmlsecurity/qa/unit/signing/signing.cxx(680) : error : Assertion
Test name: test96097Doc::TestBody
assertion failed
- Expression: (nActual == SignatureState::OK || nActual == SignatureState::NOTVALIDATED || nActual == SignatureState::INVALID)
- 2

C:/lo/src/core/xmlsecurity/qa/unit/signing/signing.cxx(531) : error : Assertion
Test name: testODFGood::TestBody
assertion failed
- Expression: (nActual == SignatureState::NOTVALIDATED || nActual == SignatureState::OK)
- 2

C:/lo/src/core/xmlsecurity/qa/unit/signing/signing.cxx(572) : error : Assertion
Test name: testOOXMLPartial::TestBody
assertion failed
- Expression: (nActual == SignatureState::NOTVALIDATED_PARTIAL_OK || nActual == SignatureState::PARTIAL_OK)
- 2

Failures !!!
Run: 23   Failure total: 7   Failures: 7   Errors: 0
warn:vcl.schedule.deinit:49312:46228:vcl/source/app/scheduler.cxx:175: DeInit task: Timer a: 1 p: 1 drawinglayer ImpTimedRefDev destroy mpVirDev 180000ms (00000
2453BEF1740)
warn:vcl.schedule.deinit:49312:46228:vcl/source/app/scheduler.cxx:175: DeInit task: Timer a: 1 p: 1 graphic::Manager maSwapOutTimer 10000ms (00007FF8D5F79B00)
warn:vcl.schedule.deinit:49312:46228:vcl/source/app/scheduler.cxx:175: DeInit task: Timer a: 1 p: 1 sc ScModule IdleTimer 150ms (000002453A8B96E8) (ignored)
warn:vcl.schedule.deinit:49312:46228:vcl/source/app/scheduler.cxx:196: DeInit active tasks: 3 (ignored: 1)
warn:fwk.desktop:49312:46228:framework/source/services/desktop.cxx:1065: Desktop disposed before terminating it
warn:unotools.config:49312:46228:unotools/source/config/configmgr.cxx:140: ConfigManager not empty

Error: a unit test failed, please do one of:
make CppunitTest_xmlsecurity_signing CPPUNITTRACE=TRUE # which is a shortcut for the following line
make CppunitTest_xmlsecurity_signing CPPUNITTRACE="'C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/Common7/IDE/devenv.exe' /debugexe" # for inter
active debugging in Visual Studio
make CppunitTest_xmlsecurity_signing CPPUNITTRACE="drmemory -free_max_frames 20" # for memory checking (install Dr.Memory first, and put it to your PATH)

You can limit the execution to just one particular test by:

make CppunitTest_xmlsecurity_signing CPPUNIT_TEST_NAME="testXYZ" ...above mentioned params...

make[1]: *** [C:/lo/src/core/solenv/gbuild/CppunitTest.mk:113: C:/lo/src/build/workdir/CppunitTest/xmlsecurity_signing.test] Error 1
make: *** [Makefile:166: CppunitTest_xmlsecurity_signing] Error 2
-------------- next part --------------
A non-text attachment was scrubbed...
Name: pEpkey.asc
Type: application/pgp-keys
Size: 1769 bytes
Desc: not available
URL: <https://lists.freedesktop.org/archives/libreoffice/attachments/20200401/7ab36cb5/attachment.key>


More information about the LibreOffice mailing list