1. 06 Ock, 2016 24 kayıt (commit)
    • Stephan Bergmann's avatar
      Get parenthesisation right · 55a5ac48
      Stephan Bergmann yazdı
      ...for
      
        #define COMMA ,
        if (SAL_LIKELY(void() COMMA true)) ...
      
      Change-Id: I607d3da52e769035b35cefe1103675d89d5a3b9b
      55a5ac48
    • Tor Lillqvist's avatar
      Bin unneeded forward declarations · 409d1817
      Tor Lillqvist yazdı
      Change-Id: Ia5e53ab06c3c2097602520023cb53883baa434fe
      409d1817
    • Stephan Bergmann's avatar
      Make E3dScene3D::GetCamera return non-reference · fd6263e3
      Stephan Bergmann yazdı
      I stumbled over this when Valgrind'ing CppunitTest_sd_filters_test somewhat
      erroneously reported
      
        Source and destination overlap in memcpy(0x2fde4af8, 0x2fde4af8, 96)
      
      for
      
        aCamera = rNewCamera;
      
      in E3dScene::SetCamera (svx/source/engine3d/scene3d.cxx), where the compiler
      chose to use memcpy in the implicit definition of the Viewport3D (being a base
      class of Camera3D) copy assignment operator, and the call pattern of
      Get/SetCamera in EnhancedCustomShape3d::Create3DObject
      (svx/source/customshapes/EnhancedCustomShape3d.cxx) causes that assignment to be
      a self-assignment.
      
      Upon closer inspection, some calls of GetCamera already create a copy from the
      returned reference, while others modified the returned reference, but then would
      also always call SetCamera on it.  An alternative to the given change would have
      been to instead change SetCamera(Camera3D&) to UpdateCamera() and require all
      call sites of GetCamera/UpdateCamera to modify the reference returned from
      GetCamera, but it looks safer overall to go this way.
      
      Change-Id: I578e72db57630dca1b09124a3b11d177005b797d
      fd6263e3
    • Michael Stahl's avatar
      sal: don't use reserved identifiers, much less in public API · cd103a88
      Michael Stahl yazdı
      rename to SAL_DETAIL_BOOLEAN_EXPR
      
      Change-Id: Ifb2b2d09a421313e021062cb37ade8777c30f25a
      cd103a88
    • Michael Meeks's avatar
      vcl: opengl - if we can't get the context we want, fallback properly. · 0bc3b393
      Michael Meeks yazdı
      Fixes crash on Linux / NVidea with GL manually enabled.
      
      We can cope with a non-double-buffered context if we have to.
      
      Change-Id: Ic7968b8576cfe0efb10718058bc69db5b4daef95
      0bc3b393
    • Juergen Funk's avatar
      unused SalGraphics::drawTransformedBitmap( · be0b3699
      Juergen Funk yazdı
             basegfx::B2DPoint const&, basegfx::B2DPoint const&,
             basegfx::B2DPoint const&, SalBitmap const&, SalBitmap const*)
      
      it used here
        http://opengrok.libreoffice.org/xref/core/vcl/quartz/salgdicommon.cxx#669
      and
        http://opengrok.libreoffice.org/xref/core/vcl/win/gdi/gdiimpl.cxx#2305
      
      Change-Id: Ia177e27fe1dcec0ca441547db0240fb3f62650a7
      Reviewed-on: https://gerrit.libreoffice.org/21085Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
      Tested-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
      be0b3699
    • Andrzej Hunt's avatar
      Use OUStringBuffer when constructing string in loop · 65650d64
      Andrzej Hunt yazdı
      Change-Id: Ic29e301d0162d41ea5e38070e296610115735983
      Reviewed-on: https://gerrit.libreoffice.org/20191Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
      Tested-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
      65650d64
    • Tor Lillqvist's avatar
      Revert "This probably is not worth displaying a warning about" · e4968cfb
      Tor Lillqvist yazdı
      It might be a useful warning.
      
      This reverts commit d202f851.
      e4968cfb
    • Stephan Bergmann's avatar
      loplugin:defaultparams · f1d3b68f
      Stephan Bergmann yazdı
      Change-Id: Ic5bfc72c75745d0a4d9ff165d840ab51c90a8690
      f1d3b68f
    • Michael Meeks's avatar
      tdf#39631 - branch hints: comment, and tweak variously, also use. · e75406e5
      Michael Meeks yazdı
      Find a few million mis-predicted branches (according to callgrind)
      and annotate them. Mark string acquire/release as hot, and a number of
      deprecated methods as cold.
      
      Change-Id: I678b3981794221c97f9ebb70fd0161c0fda5dceb
      e75406e5
    • Sheikha AL-Hinai's avatar
      tdf#39631: Add optimisation helpers · eafb1ebf
      Sheikha AL-Hinai yazdı
      Change-Id: I3d09eea11e7acabcd9b692bf5abd7676b89f1323
      eafb1ebf
    • Michael Meeks's avatar
      vcl: opengl - Kill the last glErrors on common paths. · 1479ad1c
      Michael Meeks yazdı
      Re-work the makeSomeOpenGLContextCurrent logic into a shared function
      with the existing AcquireContext logic in the SalOpenGLGraphics impl.
      Use an OpenGLVCLContextZone placeholder to do both context and zone
      management - to include destructors into the zone.
      
      Fix a number of error cases around SalBitmaps where we did not have
      a GL context associated when allocating, and/or freeing textures..
      
      Don't drag a (potentially) slower context around in the
      OpenGLSalBitmap when we're going to check / fetch a better VCL
      context anyway.
      
      Change-Id: Ibbb2358c47156cd078ad28b6aad4f03af36aaf23
      Reviewed-on: https://gerrit.libreoffice.org/21127Reviewed-by: 's avatarMichael Meeks <michael.meeks@collabora.com>
      Tested-by: 's avatarMichael Meeks <michael.meeks@collabora.com>
      1479ad1c
    • Tor Lillqvist's avatar
      Bin some unused functions and fields · 3576a87d
      Tor Lillqvist yazdı
      Change-Id: I679bae7734c655afe956845980e885b6b68002cd
      3576a87d
    • Tor Lillqvist's avatar
      Bin unnecessary variable · 2b9ec36e
      Tor Lillqvist yazdı
      Change-Id: I140785838f2665b735b288d689c873502d1d1cfb
      2b9ec36e
    • Miklos Vajna's avatar
      xmlsecurity: allow creating multiple signatures with the same certificate · e514a558
      Miklos Vajna yazdı
      Now that the user can provide a description of the signature, it makes
      sense to allow multiple signatures from the same user, assuming that the
      descriptions explain the purpose of the different signatures.
      
      Change-Id: I2cd4680594732d6b40dc3ffbcb6b4a9a6ca87919
      e514a558
    • Miklos Vajna's avatar
      xmlsecurity: add UI to provide a description when signing · ef16f72d
      Miklos Vajna yazdı
      Change-Id: I6fdbcb342d06e05b4965ccf7f593ac130426828a
      ef16f72d
    • Miklos Vajna's avatar
      tdf#92045 DOCX import: <w:effect w:val="none"/> doesn't mean blinking · ac6bfd85
      Miklos Vajna yazdı
      Regression from commit eeb8297e (Use
      constants for ST_TextEffect values, 2014-09-22), the problem was that
      while the tokenizer stopped using hardcoded token values, the matching
      dmapper code wasn't adapted.
      
      Change-Id: Id61912e9c9458efc87e0a6f8e461663942c555f0
      ac6bfd85
    • Markus Mohrhard's avatar
      disable test on OSX · a30a36b3
      Markus Mohrhard yazdı
      The table seems to be on page 4 on OSX and not page 5. This makes the
      xpath expression fail.
      
      Change-Id: Ife16b25923041c66b2d9f352dbd3cfb6893f4ef5
      Reviewed-on: https://gerrit.libreoffice.org/21139Tested-by: 's avatarJenkins <ci@libreoffice.org>
      Reviewed-by: 's avatarMiklos Vajna <vmiklos@collabora.co.uk>
      a30a36b3
    • Stephan Bergmann's avatar
      Missing include · d79efb60
      Stephan Bergmann yazdı
      Change-Id: Iaa59ae222c4d0453cbacb33018036802d606affc
      d79efb60
    • Stephan Bergmann's avatar
      Missing include · 5af3256f
      Stephan Bergmann yazdı
      Change-Id: I958c2baf2ee1e0505e961d1a9c420df2881dab3f
      5af3256f
    • Stephan Bergmann's avatar
      std::swap is in <utility>, not <algorithm> · 3a459b52
      Stephan Bergmann yazdı
      Change-Id: I8b93f053276ff273f2f79ed29d7605d976f7d866
      3a459b52
    • Stephan Bergmann's avatar
      Missing include · 6c1cab56
      Stephan Bergmann yazdı
      Change-Id: Icba84b4921cdb7c4a9e88975ec98dddc91e9f79b
      6c1cab56
    • Chris Sherlock's avatar
      vcl: init font metric variables in ImplFontAttributes constructors · 5a014c49
      Chris Sherlock yazdı
      If you run valgrind on a number of the unit tests, you get errors, mostly
      because mbKernable has not been initialized and is in indeterminate state.
      I am initializing all font metric variables to default variables explicitly
      in the constructor now.
      
      Snippet from output of CppunitTest_sd_filter_test before change follows:
      
      make CppunitTest_sd_filters_test VALGRIND=memcheck
      
      [cut lots of irrelevant stuff]
      
      Testing file:///home/chris/repos/libreoffice/sd/qa/unit/data/odg/pass/CVE-2012-4233-2.odg:
      ==24149== Conditional jump or move depends on uninitialised value(s)
      ==24149==    at 0xD75BBDC: OutputDevice::GetFontMetric() const (font.cxx:212)
      ==24149==    by 0x1A358682: ImpEditEngine::RecalcFormatterFontMetrics(FormatterFontMetric&, SvxFont&) (impedit3.cxx:2826)
      ==24149==    by 0x1A35AF86: ImpEditEngine::CreateAndInsertEmptyLine(ParaPortion*, unsigned int) (impedit3.cxx:1649)
      ==24149==    by 0x1A362A3D: ImpEditEngine::CreateLines(int, unsigned int) (impedit3.cxx:625)
      ==24149==    by 0x1A364BA0: ImpEditEngine::FormatDoc() (impedit3.cxx:390)
      ==24149==    by 0x1A369982: ImpEditEngine::FormatAndUpdate(EditView*) (impedit3.cxx:4199)
      ==24149==    by 0x1A31BCA4: EditEngine::SetUpdateMode(bool) (editeng.cxx:1436)
      ==24149==    by 0x1D2DF8D0: SdrTextObj::AdjustTextFrameWidthAndHeight(Rectangle&, bool, bool) const (svdotxat.cxx:167)
      ==24149==    by 0x1D2DFA4D: SdrTextObj::NbcAdjustTextFrameWidthAndHeight(bool, bool) (svdotxat.cxx:263)
      ==24149==    by 0x1D1F15D0: sdr::properties::TextProperties::SetStyleSheet(SfxStyleSheet*, bool) (textproperties.cxx:356)
      ==24149==    by 0x1D1EE027: sdr::properties::RectangleProperties::SetStyleSheet(SfxStyleSheet*, bool) (rectangleproperties.cxx:65)
      ==24149==    by 0x1D1F324B: sdr::properties::AttributeProperties::SetModel(SdrModel*, SdrModel*) (attributeproperties.cxx:471)
      ==24149==    by 0x1D2D0810: SdrTextObj::SetModel(SdrModel*) (svdotext.cxx:532)
      ==24149==    by 0x1D284924: SdrObject::SetPage(SdrPage*) (svdobj.cxx:462)
      ==24149==    by 0x1D286A74: SdrObjFactory::MakeNewObject(unsigned int, unsigned short, Rectangle const&, SdrPage*) (svdobj.cxx:3312)
      ==24149==    by 0x1D3BEAB5: SvxDrawPage::_CreateSdrObject(com::sun::star::uno::Reference<com::sun::star::drawing::XShape> const&) (unopage.cxx:508)
      ==24149==    by 0x1D53F88C: SvxFmDrawPage::_CreateSdrObject(com::sun::star::uno::Reference<com::sun::star::drawing::XShape> const&) (fmdpage.cxx:78)
      ==24149==    by 0x1B59ECDF: SdGenericDrawPage::_CreateSdrObject(com::sun::star::uno::Reference<com::sun::star::drawing::XShape> const&) (unopage.cxx:401)
      ==24149==    by 0x1D3BF1AF: SvxDrawPage::CreateSdrObject(com::sun::star::uno::Reference<com::sun::star::drawing::XShape> const&, bool) (unopage.cxx:838)
      ==24149==    by 0x1D3BF37C: SvxDrawPage::add(com::sun::star::uno::Reference<com::sun::star::drawing::XShape> const&) (unopage.cxx:213)
      ==24149==    by 0x1E6CFA87: SdXMLShapeContext::AddShape(com::sun::star::uno::Reference<com::sun::star::drawing::XShape>&) (ximpshap.cxx:427)
      ==24149==    by 0x1E6D053A: SdXMLShapeContext::AddShape(rtl::OUString const&) (ximpshap.cxx:520)
      ==24149==    by 0x1E6D3C93: SdXMLTextBoxShapeContext::StartElement(com::sun::star::uno::Reference<com::sun::star::xml::sax::XAttributeList> const&) (ximpshap.cxx:1689)
      ==24149==    by 0x1E608E3A: SvXMLImport::startElement(rtl::OUString const&, com::sun::star::uno::Reference<com::sun::star::xml::sax::XAttributeList> const&) (xmlimp.cxx:737)
      ==24149==    by 0x1FA10639: callbackStartElement (sax_expat.cxx:749)
      ==24149==    by 0x1FA10639: call_callbackStartElement (sax_expat.cxx:247)
      ==24149==    by 0x1FA303B9: doContent (xmlparse.c:2443)
      ==24149==    by 0x1FA310CB: contentProcessor (xmlparse.c:2105)
      ==24149==    by 0x1FA2F418: doProlog (xmlparse.c:4016)
      ==24149==    by 0x1FA2FB94: prologProcessor (xmlparse.c:3739)
      ==24149==    by 0x1FA3312F: XML_ParseBuffer (xmlparse.c:1651)
      ==24149==    by 0x1FA0D359: (anonymous namespace)::SaxExpatParser_Impl::parse() (sax_expat.cxx:687)
      ==24149==    by 0x1FA0E47E: (anonymous namespace)::SaxExpatParser::parseStream(com::sun::star::xml::sax::InputSource const&) (sax_expat.cxx:484)
      ==24149==    by 0x1B30B4A2: ReadThroughComponent (sdxmlwrp.cxx:220)
      ==24149==    by 0x1B30B4A2: (anonymous namespace)::ReadThroughComponent(com::sun::star::uno::Reference<com::sun::star::embed::XStorage> const&, com::sun::star::uno::Reference<com::sun::star::lang::XComponent>, char const*, char const*, com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext>&, char const*, com::sun::star::uno::Sequence<com::sun::star::uno::Any> const&, rtl::OUString const&, bool) (sdxmlwrp.cxx:392)
      ==24149==    by 0x1B30E582: SdXMLFilter::Import(unsigned int&) (sdxmlwrp.cxx:660)
      ==24149==    by 0x1B3CEA64: sd::DrawDocShell::ConvertFrom(SfxMedium&) (docshel4.cxx:462)
      ==24149==    by 0x1BDEBBF4: SfxObjectShell::DoLoad(SfxMedium*) (objstor.cxx:785)
      ==24149==    by 0x19CD3D1A: SdFiltersTest::load(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int) (filters-test.cxx:75)
      ==24149==    by 0x1E2524AB: test::FiltersTest::recursiveScan(test::filterStatus, rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int, bool) (filters-test.cxx:131)
      ==24149==    by 0x1E252FE9: test::FiltersTest::testDir(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int, bool) (filters-test.cxx:157)
      ==24149==    by 0x19CD3A32: SdFiltersTest::testCVEs() (filters-test.cxx:97)
      ==24149==    by 0x4E94843: CppUnit::TestCaseMethodFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x6C44812: (anonymous namespace)::Prot::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (unoexceptionprotector.cxx:63)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E85FF0: CppUnit::DefaultProtector::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F476: CppUnit::ProtectorChain::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E9F4C4: CppUnit::TestResult::protect(CppUnit::Functor const&, CppUnit::Test*, std::string const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94291: CppUnit::TestCase::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==
      ==24149== Conditional jump or move depends on uninitialised value(s)
      ==24149==    at 0xD75A8E8: OutputDevice::ImplNewFont() const (font.cxx:1619)
      ==24149==    by 0xD75E294: OutputDevice::GetTextHeight() const (text.cxx:942)
      ==24149==    by 0x1A3A9EF5: SvxFont::QuickGetTextSize(OutputDevice const*, rtl::OUString const&, int, int, long*) const (svxfont.cxx:403)
      ==24149==    by 0x1A360D3A: ImpEditEngine::CreateLines(int, unsigned int) (impedit3.cxx:1092)
      ==24149==    by 0x1A364BA0: ImpEditEngine::FormatDoc() (impedit3.cxx:390)
      ==24149==    by 0x1A369982: ImpEditEngine::FormatAndUpdate(EditView*) (impedit3.cxx:4199)
      ==24149==    by 0x1A31BCA4: EditEngine::SetUpdateMode(bool) (editeng.cxx:1436)
      ==24149==    by 0x1A3EA098: Outliner::SetText(OutlinerParaObject const&) (outliner.cxx:616)
      ==24149==    by 0x1D2DF8EE: SdrTextObj::AdjustTextFrameWidthAndHeight(Rectangle&, bool, bool) const (svdotxat.cxx:172)
      ==24149==    by 0x1D2DFA4D: SdrTextObj::NbcAdjustTextFrameWidthAndHeight(bool, bool) (svdotxat.cxx:263)
      ==24149==    by 0x1D2D0B55: SdrTextObj::NbcSetOutlinerParaObjectForText(OutlinerParaObject*, SdrText*) (svdotext.cxx:1433)
      ==24149==    by 0x1D451C49: SvxTextEditSourceImpl::UpdateData() (unoshtxt.cxx:877)
      ==24149==    by 0x1D451F3C: SvxTextEditSourceImpl::unlock() (unoshtxt.cxx:909)
      ==24149==    by 0x1D43C0DD: SvxShape::removeActionLock() (unoshape.cxx:3866)
      ==24149==    by 0x1E6D96CE: SdXMLShapeContext::EndElement() (ximpshap.cxx:409)
      ==24149==    by 0x1E5FB704: SvXMLImport::endElement(rtl::OUString const&) (xmlimp.cxx:768)
      ==24149==    by 0x1FA101C9: callbackEndElement (sax_expat.cxx:761)
      ==24149==    by 0x1FA101C9: call_callbackEndElement (sax_expat.cxx:251)
      ==24149==    by 0x1FA307B2: doContent (xmlparse.c:2532)
      ==24149==    by 0x1FA310CB: contentProcessor (xmlparse.c:2105)
      ==24149==    by 0x1FA2F418: doProlog (xmlparse.c:4016)
      ==24149==    by 0x1FA2FB94: prologProcessor (xmlparse.c:3739)
      ==24149==    by 0x1FA3312F: XML_ParseBuffer (xmlparse.c:1651)
      ==24149==    by 0x1FA0D359: (anonymous namespace)::SaxExpatParser_Impl::parse() (sax_expat.cxx:687)
      ==24149==    by 0x1FA0E47E: (anonymous namespace)::SaxExpatParser::parseStream(com::sun::star::xml::sax::InputSource const&) (sax_expat.cxx:484)
      ==24149==    by 0x1B30B4A2: ReadThroughComponent (sdxmlwrp.cxx:220)
      ==24149==    by 0x1B30B4A2: (anonymous namespace)::ReadThroughComponent(com::sun::star::uno::Reference<com::sun::star::embed::XStorage> const&, com::sun::star::uno::Reference<com::sun::star::lang::XComponent>, char const*, char const*, com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext>&, char const*, com::sun::star::uno::Sequence<com::sun::star::uno::Any> const&, rtl::OUString const&, bool) (sdxmlwrp.cxx:392)
      ==24149==    by 0x1B30E582: SdXMLFilter::Import(unsigned int&) (sdxmlwrp.cxx:660)
      ==24149==    by 0x1B3CEA64: sd::DrawDocShell::ConvertFrom(SfxMedium&) (docshel4.cxx:462)
      ==24149==    by 0x1BDEBBF4: SfxObjectShell::DoLoad(SfxMedium*) (objstor.cxx:785)
      ==24149==    by 0x19CD3D1A: SdFiltersTest::load(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int) (filters-test.cxx:75)
      ==24149==    by 0x1E2524AB: test::FiltersTest::recursiveScan(test::filterStatus, rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int, bool) (filters-test.cxx:131)
      ==24149==    by 0x1E252FE9: test::FiltersTest::testDir(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int, bool) (filters-test.cxx:157)
      ==24149==    by 0x19CD3A32: SdFiltersTest::testCVEs() (filters-test.cxx:97)
      ==24149==    by 0x4E94843: CppUnit::TestCaseMethodFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x6C44812: (anonymous namespace)::Prot::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (unoexceptionprotector.cxx:63)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E85FF0: CppUnit::DefaultProtector::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F476: CppUnit::ProtectorChain::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E9F4C4: CppUnit::TestResult::protect(CppUnit::Functor const&, CppUnit::Test*, std::string const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94291: CppUnit::TestCase::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94F1D: CppUnit::TestComposite::doRunChildTests(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94DA7: CppUnit::TestComposite::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94F1D: CppUnit::TestComposite::doRunChildTests(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94DA7: CppUnit::TestComposite::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4EA3A3F: CppUnit::TestRunner::WrappingSuite::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E9F253: CppUnit::TestResult::runTest(CppUnit::Test*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4EA3CCC: CppUnit::TestRunner::run(CppUnit::TestResult&, std::string const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x404152: (anonymous namespace)::ProtectedFixtureFunctor::run() const (cppunittester.cxx:281)
      ==24149==
      ==24149== Conditional jump or move depends on uninitialised value(s)
      ==24149==    at 0xD75A8E8: OutputDevice::ImplNewFont() const (font.cxx:1619)
      ==24149==    by 0xD75C28F: OutputDevice::GetFontMetric() const (font.cxx:189)
      ==24149==    by 0x1A358682: ImpEditEngine::RecalcFormatterFontMetrics(FormatterFontMetric&, SvxFont&) (impedit3.cxx:2826)
      ==24149==    by 0x1A3607BE: ImpEditEngine::CreateLines(int, unsigned int) (impedit3.cxx:1332)
      ==24149==    by 0x1A364BA0: ImpEditEngine::FormatDoc() (impedit3.cxx:390)
      ==24149==    by 0x1A369982: ImpEditEngine::FormatAndUpdate(EditView*) (impedit3.cxx:4199)
      ==24149==    by 0x1A31BCA4: EditEngine::SetUpdateMode(bool) (editeng.cxx:1436)
      ==24149==    by 0x1A3EA098: Outliner::SetText(OutlinerParaObject const&) (outliner.cxx:616)
      ==24149==    by 0x1D2DF8EE: SdrTextObj::AdjustTextFrameWidthAndHeight(Rectangle&, bool, bool) const (svdotxat.cxx:172)
      ==24149==    by 0x1D2DFA4D: SdrTextObj::NbcAdjustTextFrameWidthAndHeight(bool, bool) (svdotxat.cxx:263)
      ==24149==    by 0x1D2D0B55: SdrTextObj::NbcSetOutlinerParaObjectForText(OutlinerParaObject*, SdrText*) (svdotext.cxx:1433)
      ==24149==    by 0x1D451C49: SvxTextEditSourceImpl::UpdateData() (unoshtxt.cxx:877)
      ==24149==    by 0x1D451F3C: SvxTextEditSourceImpl::unlock() (unoshtxt.cxx:909)
      ==24149==    by 0x1D43C0DD: SvxShape::removeActionLock() (unoshape.cxx:3866)
      ==24149==    by 0x1E6D96CE: SdXMLShapeContext::EndElement() (ximpshap.cxx:409)
      ==24149==    by 0x1E5FB704: SvXMLImport::endElement(rtl::OUString const&) (xmlimp.cxx:768)
      ==24149==    by 0x1FA101C9: callbackEndElement (sax_expat.cxx:761)
      ==24149==    by 0x1FA101C9: call_callbackEndElement (sax_expat.cxx:251)
      ==24149==    by 0x1FA307B2: doContent (xmlparse.c:2532)
      ==24149==    by 0x1FA310CB: contentProcessor (xmlparse.c:2105)
      ==24149==    by 0x1FA2F418: doProlog (xmlparse.c:4016)
      ==24149==    by 0x1FA2FB94: prologProcessor (xmlparse.c:3739)
      ==24149==    by 0x1FA3312F: XML_ParseBuffer (xmlparse.c:1651)
      ==24149==    by 0x1FA0D359: (anonymous namespace)::SaxExpatParser_Impl::parse() (sax_expat.cxx:687)
      ==24149==    by 0x1FA0E47E: (anonymous namespace)::SaxExpatParser::parseStream(com::sun::star::xml::sax::InputSource const&) (sax_expat.cxx:484)
      ==24149==    by 0x1B30B4A2: ReadThroughComponent (sdxmlwrp.cxx:220)
      ==24149==    by 0x1B30B4A2: (anonymous namespace)::ReadThroughComponent(com::sun::star::uno::Reference<com::sun::star::embed::XStorage> const&, com::sun::star::uno::Reference<com::sun::star::lang::XComponent>, char const*, char const*, com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext>&, char const*, com::sun::star::uno::Sequence<com::sun::star::uno::Any> const&, rtl::OUString const&, bool) (sdxmlwrp.cxx:392)
      ==24149==    by 0x1B30E582: SdXMLFilter::Import(unsigned int&) (sdxmlwrp.cxx:660)
      ==24149==    by 0x1B3CEA64: sd::DrawDocShell::ConvertFrom(SfxMedium&) (docshel4.cxx:462)
      ==24149==    by 0x1BDEBBF4: SfxObjectShell::DoLoad(SfxMedium*) (objstor.cxx:785)
      ==24149==    by 0x19CD3D1A: SdFiltersTest::load(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int) (filters-test.cxx:75)
      ==24149==    by 0x1E2524AB: test::FiltersTest::recursiveScan(test::filterStatus, rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int, bool) (filters-test.cxx:131)
      ==24149==    by 0x1E252FE9: test::FiltersTest::testDir(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int, bool) (filters-test.cxx:157)
      ==24149==    by 0x19CD3A32: SdFiltersTest::testCVEs() (filters-test.cxx:97)
      ==24149==    by 0x4E94843: CppUnit::TestCaseMethodFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x6C44812: (anonymous namespace)::Prot::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (unoexceptionprotector.cxx:63)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E85FF0: CppUnit::DefaultProtector::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F476: CppUnit::ProtectorChain::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E9F4C4: CppUnit::TestResult::protect(CppUnit::Functor const&, CppUnit::Test*, std::string const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94291: CppUnit::TestCase::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94F1D: CppUnit::TestComposite::doRunChildTests(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94DA7: CppUnit::TestComposite::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94F1D: CppUnit::TestComposite::doRunChildTests(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94DA7: CppUnit::TestComposite::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4EA3A3F: CppUnit::TestRunner::WrappingSuite::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E9F253: CppUnit::TestResult::runTest(CppUnit::Test*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4EA3CCC: CppUnit::TestRunner::run(CppUnit::TestResult&, std::string const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x404152: (anonymous namespace)::ProtectedFixtureFunctor::run() const (cppunittester.cxx:281)
      ==24149==
      ==24149== Conditional jump or move depends on uninitialised value(s)
      ==24149==    at 0xD75BBDC: OutputDevice::GetFontMetric() const (font.cxx:212)
      ==24149==    by 0x1A358682: ImpEditEngine::RecalcFormatterFontMetrics(FormatterFontMetric&, SvxFont&) (impedit3.cxx:2826)
      ==24149==    by 0x1A3607BE: ImpEditEngine::CreateLines(int, unsigned int) (impedit3.cxx:1332)
      ==24149==    by 0x1A364BA0: ImpEditEngine::FormatDoc() (impedit3.cxx:390)
      ==24149==    by 0x1A369982: ImpEditEngine::FormatAndUpdate(EditView*) (impedit3.cxx:4199)
      ==24149==    by 0x1A31BCA4: EditEngine::SetUpdateMode(bool) (editeng.cxx:1436)
      ==24149==    by 0x1A3EA098: Outliner::SetText(OutlinerParaObject const&) (outliner.cxx:616)
      ==24149==    by 0x1D2DF8EE: SdrTextObj::AdjustTextFrameWidthAndHeight(Rectangle&, bool, bool) const (svdotxat.cxx:172)
      ==24149==    by 0x1D2DFA4D: SdrTextObj::NbcAdjustTextFrameWidthAndHeight(bool, bool) (svdotxat.cxx:263)
      ==24149==    by 0x1D2D0B55: SdrTextObj::NbcSetOutlinerParaObjectForText(OutlinerParaObject*, SdrText*) (svdotext.cxx:1433)
      ==24149==    by 0x1D451C49: SvxTextEditSourceImpl::UpdateData() (unoshtxt.cxx:877)
      ==24149==    by 0x1D451F3C: SvxTextEditSourceImpl::unlock() (unoshtxt.cxx:909)
      ==24149==    by 0x1D43C0DD: SvxShape::removeActionLock() (unoshape.cxx:3866)
      ==24149==    by 0x1E6D96CE: SdXMLShapeContext::EndElement() (ximpshap.cxx:409)
      ==24149==    by 0x1E5FB704: SvXMLImport::endElement(rtl::OUString const&) (xmlimp.cxx:768)
      ==24149==    by 0x1FA101C9: callbackEndElement (sax_expat.cxx:761)
      ==24149==    by 0x1FA101C9: call_callbackEndElement (sax_expat.cxx:251)
      ==24149==    by 0x1FA307B2: doContent (xmlparse.c:2532)
      ==24149==    by 0x1FA310CB: contentProcessor (xmlparse.c:2105)
      ==24149==    by 0x1FA2F418: doProlog (xmlparse.c:4016)
      ==24149==    by 0x1FA2FB94: prologProcessor (xmlparse.c:3739)
      ==24149==    by 0x1FA3312F: XML_ParseBuffer (xmlparse.c:1651)
      ==24149==    by 0x1FA0D359: (anonymous namespace)::SaxExpatParser_Impl::parse() (sax_expat.cxx:687)
      ==24149==    by 0x1FA0E47E: (anonymous namespace)::SaxExpatParser::parseStream(com::sun::star::xml::sax::InputSource const&) (sax_expat.cxx:484)
      ==24149==    by 0x1B30B4A2: ReadThroughComponent (sdxmlwrp.cxx:220)
      ==24149==    by 0x1B30B4A2: (anonymous namespace)::ReadThroughComponent(com::sun::star::uno::Reference<com::sun::star::embed::XStorage> const&, com::sun::star::uno::Reference<com::sun::star::lang::XComponent>, char const*, char const*, com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext>&, char const*, com::sun::star::uno::Sequence<com::sun::star::uno::Any> const&, rtl::OUString const&, bool) (sdxmlwrp.cxx:392)
      ==24149==    by 0x1B30E582: SdXMLFilter::Import(unsigned int&) (sdxmlwrp.cxx:660)
      ==24149==    by 0x1B3CEA64: sd::DrawDocShell::ConvertFrom(SfxMedium&) (docshel4.cxx:462)
      ==24149==    by 0x1BDEBBF4: SfxObjectShell::DoLoad(SfxMedium*) (objstor.cxx:785)
      ==24149==    by 0x19CD3D1A: SdFiltersTest::load(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int) (filters-test.cxx:75)
      ==24149==    by 0x1E2524AB: test::FiltersTest::recursiveScan(test::filterStatus, rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int, bool) (filters-test.cxx:131)
      ==24149==    by 0x1E252FE9: test::FiltersTest::testDir(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int, bool) (filters-test.cxx:157)
      ==24149==    by 0x19CD3A32: SdFiltersTest::testCVEs() (filters-test.cxx:97)
      ==24149==    by 0x4E94843: CppUnit::TestCaseMethodFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x6C44812: (anonymous namespace)::Prot::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (unoexceptionprotector.cxx:63)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E85FF0: CppUnit::DefaultProtector::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F476: CppUnit::ProtectorChain::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E9F4C4: CppUnit::TestResult::protect(CppUnit::Functor const&, CppUnit::Test*, std::string const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94291: CppUnit::TestCase::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94F1D: CppUnit::TestComposite::doRunChildTests(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94DA7: CppUnit::TestComposite::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94F1D: CppUnit::TestComposite::doRunChildTests(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94DA7: CppUnit::TestComposite::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4EA3A3F: CppUnit::TestRunner::WrappingSuite::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E9F253: CppUnit::TestResult::runTest(CppUnit::Test*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4EA3CCC: CppUnit::TestRunner::run(CppUnit::TestResult&, std::string const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x404152: (anonymous namespace)::ProtectedFixtureFunctor::run() const (cppunittester.cxx:281)
      ==24149==    by 0x40495A: sal_main() (cppunittester.cxx:431)
      ==24149==
      warn:legacy.osl:24149:1:embeddedobj/source/general/xcreator.cxx:202: No media type is specified for the object!
      ==24149== Conditional jump or move depends on uninitialised value(s)
      ==24149==    at 0xD75A8E8: OutputDevice::ImplNewFont() const (font.cxx:1619)
      ==24149==    by 0xD75E294: OutputDevice::GetTextHeight() const (text.cxx:942)
      ==24149==    by 0x1A3A9DBA: SvxFont::GetPhysTxtSize(OutputDevice const*, rtl::OUString const&) (svxfont.cxx:383)
      ==24149==    by 0x1A35AF13: ImpEditEngine::CreateAndInsertEmptyLine(ParaPortion*, unsigned int) (impedit3.cxx:1644)
      ==24149==    by 0x1A362A3D: ImpEditEngine::CreateLines(int, unsigned int) (impedit3.cxx:625)
      ==24149==    by 0x1A364BA0: ImpEditEngine::FormatDoc() (impedit3.cxx:390)
      ==24149==    by 0x1A369982: ImpEditEngine::FormatAndUpdate(EditView*) (impedit3.cxx:4199)
      ==24149==    by 0x1A31BCA4: EditEngine::SetUpdateMode(bool) (editeng.cxx:1436)
      ==24149==    by 0x1A3EA098: Outliner::SetText(OutlinerParaObject const&) (outliner.cxx:616)
      ==24149==    by 0x1D2DF8EE: SdrTextObj::AdjustTextFrameWidthAndHeight(Rectangle&, bool, bool) const (svdotxat.cxx:172)
      ==24149==    by 0x1D2DFA4D: SdrTextObj::NbcAdjustTextFrameWidthAndHeight(bool, bool) (svdotxat.cxx:263)
      ==24149==    by 0x1D2D0B55: SdrTextObj::NbcSetOutlinerParaObjectForText(OutlinerParaObject*, SdrText*) (svdotext.cxx:1433)
      ==24149==    by 0x1D451C49: SvxTextEditSourceImpl::UpdateData() (unoshtxt.cxx:877)
      ==24149==    by 0x1D451F3C: SvxTextEditSourceImpl::unlock() (unoshtxt.cxx:909)
      ==24149==    by 0x1D43C0DD: SvxShape::removeActionLock() (unoshape.cxx:3866)
      ==24149==    by 0x1E6D96CE: SdXMLShapeContext::EndElement() (ximpshap.cxx:409)
      ==24149==    by 0x1E5FB704: SvXMLImport::endElement(rtl::OUString const&) (xmlimp.cxx:768)
      ==24149==    by 0x1FA101C9: callbackEndElement (sax_expat.cxx:761)
      ==24149==    by 0x1FA101C9: call_callbackEndElement (sax_expat.cxx:251)
      ==24149==    by 0x1FA307B2: doContent (xmlparse.c:2532)
      ==24149==    by 0x1FA310CB: contentProcessor (xmlparse.c:2105)
      ==24149==    by 0x1FA3312F: XML_ParseBuffer (xmlparse.c:1651)
      ==24149==    by 0x1FA0D359: (anonymous namespace)::SaxExpatParser_Impl::parse() (sax_expat.cxx:687)
      ==24149==    by 0x1FA0E47E: (anonymous namespace)::SaxExpatParser::parseStream(com::sun::star::xml::sax::InputSource const&) (sax_expat.cxx:484)
      ==24149==    by 0x1B30B4A2: ReadThroughComponent (sdxmlwrp.cxx:220)
      ==24149==    by 0x1B30B4A2: (anonymous namespace)::ReadThroughComponent(com::sun::star::uno::Reference<com::sun::star::embed::XStorage> const&, com::sun::star::uno::Reference<com::sun::star::lang::XComponent>, char const*, char const*, com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext>&, char const*, com::sun::star::uno::Sequence<com::sun::star::uno::Any> const&, rtl::OUString const&, bool) (sdxmlwrp.cxx:392)
      ==24149==    by 0x1B30E582: SdXMLFilter::Import(unsigned int&) (sdxmlwrp.cxx:660)
      ==24149==    by 0x1B3CEA64: sd::DrawDocShell::ConvertFrom(SfxMedium&) (docshel4.cxx:462)
      ==24149==    by 0x1BDEBBF4: SfxObjectShell::DoLoad(SfxMedium*) (objstor.cxx:785)
      ==24149==    by 0x19CD3D1A: SdFiltersTest::load(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int) (filters-test.cxx:75)
      ==24149==    by 0x1E2524AB: test::FiltersTest::recursiveScan(test::filterStatus, rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int, bool) (filters-test.cxx:131)
      ==24149==    by 0x1E252FE9: test::FiltersTest::testDir(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, SfxFilterFlags, SotClipboardFormatId, unsigned int, bool) (filters-test.cxx:157)
      ==24149==    by 0x19CD3A32: SdFiltersTest::testCVEs() (filters-test.cxx:97)
      ==24149==    by 0x4E94843: CppUnit::TestCaseMethodFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x6C44812: (anonymous namespace)::Prot::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (unoexceptionprotector.cxx:63)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E85FF0: CppUnit::DefaultProtector::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F5E2: CppUnit::ProtectorChain::ProtectFunctor::operator()() const (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E8F476: CppUnit::ProtectorChain::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E9F4C4: CppUnit::TestResult::protect(CppUnit::Functor const&, CppUnit::Test*, std::string const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94291: CppUnit::TestCase::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94F1D: CppUnit::TestComposite::doRunChildTests(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94DA7: CppUnit::TestComposite::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94F1D: CppUnit::TestComposite::doRunChildTests(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E94DA7: CppUnit::TestComposite::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4EA3A3F: CppUnit::TestRunner::WrappingSuite::run(CppUnit::TestResult*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4E9F253: CppUnit::TestResult::runTest(CppUnit::Test*) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x4EA3CCC: CppUnit::TestRunner::run(CppUnit::TestResult&, std::string const&) (in /home/chris/repos/libreoffice/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0.0.2)
      ==24149==    by 0x404152: (anonymous namespace)::ProtectedFixtureFunctor::run() const (cppunittester.cxx:281)
      ==24149==    by 0x40495A: sal_main() (cppunittester.cxx:431)
      ==24149==
      warn:legacy.tools:24149:1:svl/source/items/poolitem.cxx:114: destroying item in use
      warn:legacy.tools:24149:1:svl/source/items/poolitem.cxx:114: destroying item in use
      warn:legacy.tools:24149:1:svl/source/items/poolitem.cxx:114: destroying item in use
      
      Change-Id: Id662aaa279d8df75551fd4ff47f0043cd39e54b0
      5a014c49
    • Andrea Gelmini's avatar
      writefilter: removed superfluous #includes · 11262803
      Andrea Gelmini yazdı
      Change-Id: If9a563767cd1165c4a7363b513447cd975cb20c9
      Reviewed-on: https://gerrit.libreoffice.org/15850Tested-by: 's avatarJenkins <ci@libreoffice.org>
      Reviewed-by: 's avatarAshod Nakashian <ashnakash@gmail.com>
      11262803
  2. 05 Ock, 2016 16 kayıt (commit)