| Index: core/src/fxge/android/fpf_skiafontmgr.cpp | 
| diff --git a/core/src/fxge/android/fpf_skiafontmgr.cpp b/core/src/fxge/android/fpf_skiafontmgr.cpp | 
| index 1525293ab2e281a95862021e56c00ada38ba7519..a9bef8a2b87d5ddf52964725cebae0ced266ea32 100644 | 
| --- a/core/src/fxge/android/fpf_skiafontmgr.cpp | 
| +++ b/core/src/fxge/android/fpf_skiafontmgr.cpp | 
| @@ -208,7 +208,7 @@ static FX_DWORD	FPF_SKIAGetFamilyHash(FX_BSTR bsFamily, FX_DWORD dwStyle, FX_BYT | 
| bsFont += "Serif"; | 
| } | 
| bsFont += uCharset; | 
| -    return FPF_GetHashCode_StringA((FX_LPCSTR)bsFont, bsFont.GetLength(), TRUE); | 
| +    return FPF_GetHashCode_StringA(bsFont.c_str(), bsFont.GetLength(), TRUE); | 
| } | 
| static FX_BOOL FPF_SkiaIsCJK(FX_BYTE uCharset) | 
| { | 
|  |