Index: xfa/fxfa/app/xfa_ffwidget.cpp |
diff --git a/xfa/fxfa/app/xfa_ffwidget.cpp b/xfa/fxfa/app/xfa_ffwidget.cpp |
index 241bae0fdf10f1d1b967688626aa6196b1b37990..030d9da5f2ed85a1275974fbdd5ff62477300ce0 100644 |
--- a/xfa/fxfa/app/xfa_ffwidget.cpp |
+++ b/xfa/fxfa/app/xfa_ffwidget.cpp |
@@ -978,7 +978,7 @@ CFX_DIBitmap* XFA_LoadImageData(CXFA_FFDoc* pDoc, |
} |
CFX_WideString wsContentType; |
pImage->GetContentType(wsContentType); |
- FXCODEC_IMAGE_TYPE type = XFA_GetImageType(wsContentType); |
+ FXCODEC_IMAGE_TYPE type = XFA_GetImageType(wsContentType.AsWideStringC()); |
CFX_ByteString bsContent; |
uint8_t* pImageBuffer = NULL; |
IFX_FileRead* pImageFileRead = NULL; |
@@ -1003,7 +1003,7 @@ CFX_DIBitmap* XFA_LoadImageData(CXFA_FFDoc* pDoc, |
if (wsURL.Left(7) != FX_WSTRC(L"http://") && |
wsURL.Left(6) != FX_WSTRC(L"ftp://")) { |
CFX_DIBitmap* pBitmap = |
- pDoc->GetPDFNamedImage(wsURL, iImageXDpi, iImageYDpi); |
+ pDoc->GetPDFNamedImage(wsURL.AsWideStringC(), iImageXDpi, iImageYDpi); |
if (pBitmap) { |
bNameImage = TRUE; |
return pBitmap; |