Kaydet (Commit) 8912e6da authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Apparently wants to use pData, not &pData, as source

Change-Id: I22a3aba3266ae8209242cf6e02ca8c66b1be863b
üst ee6c4df8
......@@ -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<uno::Any> aGraphicsArgs(1);
aGraphicsArgs[0] = makeAny(aSeq);
xInit->initialize(aGraphicsArgs);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment