| Index: core/src/fpdfapi/fpdf_render/fpdf_render_text.cpp
|
| diff --git a/core/src/fpdfapi/fpdf_render/fpdf_render_text.cpp b/core/src/fpdfapi/fpdf_render/fpdf_render_text.cpp
|
| index 3a5605829530c8a9a0390deace76c14bfc4a3edc..774e7493222bbc79df147a3d315301007c3b038f 100644
|
| --- a/core/src/fpdfapi/fpdf_render/fpdf_render_text.cpp
|
| +++ b/core/src/fpdfapi/fpdf_render/fpdf_render_text.cpp
|
| @@ -313,7 +313,7 @@ static void ReleaseCachedType3(CPDF_Type3Font* pFont) {
|
| pFont->m_pDocument->GetPageData()->ReleaseFont(pFont->GetFontDict());
|
| }
|
| FX_BOOL CPDF_Type3Char::LoadBitmap(CPDF_RenderContext* pContext) {
|
| - if (m_pBitmap != NULL || m_pForm == NULL) {
|
| + if (m_pBitmap || m_pForm == NULL) {
|
| return TRUE;
|
| }
|
| if (m_pForm->CountObjects() == 1 && !m_bColored) {
|
|
|