summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-04-29 12:32:23 +0200
committerAndras Timar <andras.timar@collabora.com>2022-05-02 10:28:51 +0200
commite800ce0c12336f341c2156178c4827b72a619452 (patch)
treea7fb7481f05b40e859a1a93178989250dcfe4ddd
parentc3ab2ec3150b5b5c0c30ebee4b5257601485cfc9 (diff)
fix regression in linked bitmap import
from commit 0527778df5f1ace8731043d070cf54b7b8648545 Author: Noel Grandin <noel.grandin@collabora.co.uk> Date: Fri Aug 21 13:19:36 2020 +0200 use fastparser for fill styles spotted dodgy code while doing other work Change-Id: I339e8fbdb9df4d5f17ded76de199a3282f7c2d6c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133621 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> (cherry picked from commit d606b6bb3e03467fb66a19f0acb85e46b0d4ff41) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133598
-rw-r--r--svx/source/xml/xmlxtimp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/xml/xmlxtimp.cxx b/svx/source/xml/xmlxtimp.cxx
index 9bf7b6996b43..f1a4a0989c84 100644
--- a/svx/source/xml/xmlxtimp.cxx
+++ b/svx/source/xml/xmlxtimp.cxx
@@ -114,7 +114,7 @@ css::uno::Reference< css::xml::sax::XFastContextHandler >
if( aIter.first == XML_ELEMENT(XLINK, XML_HREF) &&
SvxXMLTableImportContextEnum::Bitmap == meContext )
{
- OString rValue = aIter.second;
+ OString& rValue = aIter.second;
if( !rValue.isEmpty() && '#' == rValue[0] )
rValue = rValue.copy( 1 );
}