[PATCH] Change in core[libreoffice-4-0]: Fix for rtfexport subsequenttest

LeMoyne Castle (via Code Review) gerrit at gerrit.libreoffice.org
Fri Jan 4 08:41:48 PST 2013


Hi,

I have submitted a patch for review:

    https://gerrit.libreoffice.org/1545

To pull it, you can do:

    git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/45/1545/1

Fix for rtfexport subsequenttest

was re-using previous data buffer in later write to file
fixes segfault in rtfexport subsequenttest
should correct WMF image garbling, rtf breakage

Change-Id: I9a296da5cfd29dc88c8e3e1352a6e9b38aeba4ef
---
M sw/source/filter/ww8/rtfattributeoutput.cxx
1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/sw/source/filter/ww8/rtfattributeoutput.cxx b/sw/source/filter/ww8/rtfattributeoutput.cxx
index 36d1cea..9a65c42 100644
--- a/sw/source/filter/ww8/rtfattributeoutput.cxx
+++ b/sw/source/filter/ww8/rtfattributeoutput.cxx
@@ -3347,7 +3347,7 @@
         OSL_FAIL("failed to export the graphic");
     aWmfStream.Seek(STREAM_SEEK_TO_END);
     nSize = aWmfStream.Tell();
-    pGraphicAry = (sal_uInt8*)aStream.GetData();
+    pGraphicAry = (sal_uInt8*)aWmfStream.GetData();
     m_aRunText->append(ExportPICT( pFlyFrmFmt, aSize, aRendered, aMapped, rCr, pBLIPType, pGraphicAry, nSize, m_rExport ));
     m_aRunText->append("}"); // nonshppict
 }

-- 
To view, visit https://gerrit.libreoffice.org/1545
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9a296da5cfd29dc88c8e3e1352a6e9b38aeba4ef
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: libreoffice-4-0
Gerrit-Owner: LeMoyne Castle <lemoyne.castle at gmail.com>



More information about the LibreOffice mailing list