Index: core/src/fxge/dib/fx_dib_transform.cpp |
diff --git a/core/src/fxge/dib/fx_dib_transform.cpp b/core/src/fxge/dib/fx_dib_transform.cpp |
index 43376c2b81962be0441a79121c1ac58225bc6e0f..19b9c3b03e7c459da70d12d8f83461c0c10a5f93 100644 |
--- a/core/src/fxge/dib/fx_dib_transform.cpp |
+++ b/core/src/fxge/dib/fx_dib_transform.cpp |
@@ -423,7 +423,7 @@ FX_BOOL CFX_ImageTransformer::Continue(IFX_Pause* pPause) { |
} |
int stretch_width = m_StretchClip.Width(); |
int stretch_height = m_StretchClip.Height(); |
- if (m_Storer.GetBitmap() == NULL) { |
+ if (!m_Storer.GetBitmap()) { |
return FALSE; |
} |
const uint8_t* stretch_buf = m_Storer.GetBitmap()->GetBuffer(); |
@@ -447,7 +447,7 @@ FX_BOOL CFX_ImageTransformer::Continue(IFX_Pause* pPause) { |
(FX_FLOAT)(m_ResultTop)); |
result2stretch.Concat(m_dest2stretch); |
result2stretch.TranslateI(-m_StretchClip.left, -m_StretchClip.top); |
- if (stretch_buf_mask == NULL && pTransformed->m_pAlphaMask) { |
+ if (!stretch_buf_mask && pTransformed->m_pAlphaMask) { |
pTransformed->m_pAlphaMask->Clear(0xff000000); |
} else if (pTransformed->m_pAlphaMask) { |
int stretch_pitch_mask = m_Storer.GetBitmap()->m_pAlphaMask->GetPitch(); |