summaryrefslogtreecommitdiff
path: root/core/fpdfapi/fpdf_font
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2016-04-14 18:50:47 -0700
committerCommit bot <commit-bot@chromium.org>2016-04-14 18:50:47 -0700
commit85fc26f3411584586707798c1ebf39a194f60cf0 (patch)
treedde930f78ec3a434395919ddde8231d05801b832 /core/fpdfapi/fpdf_font
parentb1a59597db4b8ce3ffc34dbfda2fb1ecb80c2397 (diff)
downloadpdfium-85fc26f3411584586707798c1ebf39a194f60cf0.tar.xz
Explicity use CFX_ByteStrings in a couple of places
These are exposed by making the ByteString from ByteStringC ctor explicit, but we can clean them up independently. Review URL: https://codereview.chromium.org/1884363002
Diffstat (limited to 'core/fpdfapi/fpdf_font')
-rw-r--r--core/fpdfapi/fpdf_font/fpdf_font.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fpdfapi/fpdf_font/fpdf_font.cpp b/core/fpdfapi/fpdf_font/fpdf_font.cpp
index c405072502..0ef49ce6c2 100644
--- a/core/fpdfapi/fpdf_font/fpdf_font.cpp
+++ b/core/fpdfapi/fpdf_font/fpdf_font.cpp
@@ -239,10 +239,10 @@ void CPDF_ToUnicodeMap::Load(CPDF_Stream* pStream) {
if (highcode == (uint32_t)-1) {
break;
}
- CFX_ByteString start = parser.GetWord();
+ CFX_ByteString start(parser.GetWord());
if (start == "[") {
for (uint32_t code = lowcode; code <= highcode; code++) {
- CFX_ByteString dest = parser.GetWord();
+ CFX_ByteString dest(parser.GetWord());
CFX_WideString destcode = StringToWideString(dest.AsStringC());
int len = destcode.GetLength();
if (len == 0) {