diff options
author | Lei Zhang <thestig@chromium.org> | 2018-08-15 18:42:32 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-15 18:42:32 +0000 |
commit | 48ae3075a5c80e75923a60d4d0ba0b56d9b08c2a (patch) | |
tree | 464540a6b17b7e2cc3096d7f579729745f5b0664 /xfa/fxfa/parser | |
parent | 55ccb526913debb3269a33792bbd61b05656ec46 (diff) | |
download | pdfium-48ae3075a5c80e75923a60d4d0ba0b56d9b08c2a.tar.xz |
Make CFX_MemoryStream always consecutive.chromium/3524
Non-consecutive mode has questionable correctness and is not an obvious
performance win.
Change-Id: Idaa66e5ee5c4604628a0f55b67d5a04ab47ea5ec
Reviewed-on: https://pdfium-review.googlesource.com/40050
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser')
-rw-r--r-- | xfa/fxfa/parser/xfa_utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/xfa_utils.cpp b/xfa/fxfa/parser/xfa_utils.cpp index 5a8f1c8711..ba3d857522 100644 --- a/xfa/fxfa/parser/xfa_utils.cpp +++ b/xfa/fxfa/parser/xfa_utils.cpp @@ -215,7 +215,7 @@ void RegenerateFormFile_Changed(CXFA_Node* pNode, if (!pRichTextXML) break; - auto pMemStream = pdfium::MakeRetain<CFX_MemoryStream>(true); + auto pMemStream = pdfium::MakeRetain<CFX_MemoryStream>(); pRichTextXML->Save(pMemStream); wsChildren += WideString::FromUTF8( ByteStringView(pMemStream->GetBuffer(), pMemStream->GetSize())); |