diff options
author | Lei Zhang <thestig@chromium.org> | 2018-08-09 08:05:04 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-09 08:05:04 +0000 |
commit | 60627d6eafd025dde711e532eee6866840c04bef (patch) | |
tree | 0988f5945d243edb5eea2e189d8e52c180ffba0d /core/fpdfapi/page | |
parent | 74557b1b4746bc80283f0acf248242fdcab71deb (diff) | |
download | pdfium-60627d6eafd025dde711e532eee6866840c04bef.tar.xz |
Change CPDF_Font::GetNextChar()'s in-out parameter to pass by pointer.chromium/3518
Instead of passing by non-const reference. Adjust the override in
CPDF_CIDFont and CPDF_CMap::GetNextChar() as well.
Change-Id: I0ee6dc21077101cbeeb0e334498075fc463a2d65
Reviewed-on: https://pdfium-review.googlesource.com/39492
Reviewed-by: Nicolás Peña Moreno <npm@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'core/fpdfapi/page')
-rw-r--r-- | core/fpdfapi/page/cpdf_textobject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdfapi/page/cpdf_textobject.cpp b/core/fpdfapi/page/cpdf_textobject.cpp index 9da96f54f7..84428fee81 100644 --- a/core/fpdfapi/page/cpdf_textobject.cpp +++ b/core/fpdfapi/page/cpdf_textobject.cpp @@ -165,7 +165,7 @@ void CPDF_TextObject::SetSegments(const ByteString* pStrs, size_t offset = 0; while (offset < segment.GetLength()) { ASSERT(index < m_CharCodes.size()); - m_CharCodes[index++] = pFont->GetNextChar(segment, offset); + m_CharCodes[index++] = pFont->GetNextChar(segment, &offset); } if (i != nSegs - 1) { m_CharPos[index - 1] = kernings[i]; |