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@gmail.com>
Context
- [PATCH] Change in core[libreoffice-4-0]: Fix for rtfexport subsequenttest · LeMoyne Castle (via Code Review)
Privacy Policy |
Impressum (Legal Info) |
Copyright information: Unless otherwise specified, all text and images
on this website are licensed under the
Creative Commons Attribution-Share Alike 3.0 License.
This does not include the source code of LibreOffice, which is
licensed under the Mozilla Public License (
MPLv2).
"LibreOffice" and "The Document Foundation" are
registered trademarks of their corresponding registered owners or are
in actual use as trademarks in one or more countries. Their respective
logos and icons are also subject to international copyright laws. Use
thereof is explained in our
trademark policy.