diff options
author | Bo Xu <bo_xu@foxitsoftware.com> | 2014-07-14 12:13:53 -0700 |
---|---|---|
committer | Bo Xu <bo_xu@foxitsoftware.com> | 2014-07-30 17:43:53 -0700 |
commit | 0d75507c0f474ff5db77d1fb2e37a80c09505609 (patch) | |
tree | 6f42b99a5b86f4ec583b01f8ae7d0ca7c6ea79b6 /fpdfsdk/src/fpdftext.cpp | |
parent | 0b9e68b20e5ee3350d280dacae4d3891fb48661b (diff) | |
download | pdfium-0d75507c0f474ff5db77d1fb2e37a80c09505609.tar.xz |
Fix an out-of-boundary issue for wide string
BUG=381521
R=palmer@chromium.org
Review URL: https://codereview.chromium.org/383563002
Diffstat (limited to 'fpdfsdk/src/fpdftext.cpp')
-rw-r--r-- | fpdfsdk/src/fpdftext.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fpdfsdk/src/fpdftext.cpp b/fpdfsdk/src/fpdftext.cpp index 1aa0542124..869ec48ba6 100644 --- a/fpdfsdk/src/fpdftext.cpp +++ b/fpdfsdk/src/fpdftext.cpp @@ -11,7 +11,7 @@ #include <tchar.h> #endif - // jabdelmalek: commented out to build on Linux. Not used. + // jabdelmalek: commented out to build on Linux. Not used. // extern HANDLE g_hModule; DLLEXPORT FPDF_TEXTPAGE STDCALL FPDFText_LoadPage(FPDF_PAGE page) @@ -162,7 +162,8 @@ DLLEXPORT FPDF_SCHHANDLE STDCALL FPDFText_FindStart(FPDF_TEXTPAGE text_page,FPDF try { textpageFind=IPDF_TextPageFind::CreatePageFind((IPDF_TextPage*)text_page); - textpageFind->FindFirst(CFX_WideString::FromUTF16LE(findwhat),flags,start_index); + FX_STRSIZE len = CFX_WideString::WStringLength(findwhat); + textpageFind->FindFirst(CFX_WideString::FromUTF16LE(findwhat, len),flags,start_index); } catch (...) { |