diff options
Diffstat (limited to 'core/fpdfdoc')
-rw-r--r-- | core/fpdfdoc/cpdf_pagelabel.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/fpdfdoc/cpdf_pagelabel.cpp b/core/fpdfdoc/cpdf_pagelabel.cpp index e6a7780a95..d6f9220c26 100644 --- a/core/fpdfdoc/cpdf_pagelabel.cpp +++ b/core/fpdfdoc/cpdf_pagelabel.cpp @@ -143,7 +143,5 @@ int32_t CPDF_PageLabel::GetPageByLabel(const ByteStringView& bsLabel) const { } int32_t CPDF_PageLabel::GetPageByLabel(const WideStringView& wsLabel) const { - // TODO(tsepez): check usage of c_str() below. - return GetPageByLabel( - PDF_EncodeText(wsLabel.unterminated_c_str()).AsStringView()); + return GetPageByLabel(PDF_EncodeText(WideString(wsLabel)).AsStringView()); } |