From 8912e6dab98eabbdeea870a387d30ef1de938acb Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 9 Jan 2015 14:07:01 +0100 Subject: Apparently wants to use pData, not &pData, as source Change-Id: I22a3aba3266ae8209242cf6e02ca8c66b1be863b --- vcl/source/gdi/gdimtf.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcl/source/gdi/gdimtf.cxx b/vcl/source/gdi/gdimtf.cxx index ac83c6da11a0..8cf47471b8f3 100644 --- a/vcl/source/gdi/gdimtf.cxx +++ b/vcl/source/gdi/gdimtf.cxx @@ -507,7 +507,7 @@ void GDIMetaFile::ImplDelegate2PluggableRenderer( const MetaCommentAction* pAct, // delay intialization of XGraphic, to only expose // XGraphic-generating services to arbitrary binary data uno::Sequence< sal_Int8 > aSeq( - (sal_Int8*)&pData, pEndData-pData ); + (sal_Int8*)pData, pEndData-pData ); uno::Sequence aGraphicsArgs(1); aGraphicsArgs[0] = makeAny(aSeq); xInit->initialize(aGraphicsArgs); -- cgit v1.2.3