Index: core/src/fxcodec/codec/fx_codec.cpp |
diff --git a/core/src/fxcodec/codec/fx_codec.cpp b/core/src/fxcodec/codec/fx_codec.cpp |
index 0c30684e681b8e22a9e4f0bab7552942dba726a8..711e2898a1674b5418a52269b86b6edcfb57ed9f 100644 |
--- a/core/src/fxcodec/codec/fx_codec.cpp |
+++ b/core/src/fxcodec/codec/fx_codec.cpp |
@@ -674,9 +674,6 @@ FX_BOOL CCodec_RLScanlineDecoder::Create(FX_LPCBYTE src_buf, FX_DWORD src_size, |
m_Pitch = (width * nComps * bpc + 31) / 32 * 4; |
m_dwLineBytes = (width * nComps * bpc + 7) / 8; |
m_pScanline = FX_Alloc(FX_BYTE, m_Pitch); |
- if (m_pScanline == NULL) { |
- return FALSE; |
- } |
return CheckDestSize(); |
} |
FX_BOOL CCodec_RLScanlineDecoder::v_Rewind() |