| Index: core/src/fpdfapi/fpdf_parser/fpdf_parser_fdf.cpp
|
| diff --git a/core/src/fpdfapi/fpdf_parser/fpdf_parser_fdf.cpp b/core/src/fpdfapi/fpdf_parser/fpdf_parser_fdf.cpp
|
| index dd4eeddc171da33e032a853c6db1568d6f6fd5af..e431c6ad3c0e77e57d72eaddde8d5eed669b3adb 100644
|
| --- a/core/src/fpdfapi/fpdf_parser/fpdf_parser_fdf.cpp
|
| +++ b/core/src/fpdfapi/fpdf_parser/fpdf_parser_fdf.cpp
|
| @@ -175,9 +175,9 @@ void FPDF_FileSpec_SetWin32Path(CPDF_Object* pFileSpec, const CFX_WideString& fi
|
| if (filepath[2] != '\\') {
|
| result += '/';
|
| }
|
| - result += ChangeSlash((FX_LPCWSTR)filepath + 2);
|
| + result += ChangeSlash(filepath.c_str() + 2);
|
| } else if (filepath.GetLength() > 1 && filepath[0] == '\\' && filepath[1] == '\\') {
|
| - result = ChangeSlash((FX_LPCWSTR)filepath + 1);
|
| + result = ChangeSlash(filepath.c_str() + 1);
|
| } else {
|
| result = ChangeSlash(filepath);
|
| }
|
| @@ -217,7 +217,7 @@ CFX_WideString FPDF_FileSpec_GetWin32Path(const CPDF_Object* pFileSpec)
|
| CFX_WideString result;
|
| result += wsFileName[1];
|
| result += ':';
|
| - result += ChangeSlash(((FX_LPCWSTR)wsFileName) + 2);
|
| + result += ChangeSlash(wsFileName.c_str() + 2);
|
| return result;
|
| } else {
|
| CFX_WideString result;
|
|
|