From 85fc26f3411584586707798c1ebf39a194f60cf0 Mon Sep 17 00:00:00 2001 From: tsepez Date: Thu, 14 Apr 2016 18:50:47 -0700 Subject: 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 --- core/fpdfapi/fpdf_font/fpdf_font.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/fpdfapi/fpdf_font') 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) { -- cgit v1.2.3