From cfac954abcab7caf47d3fa3d641c553cba998271 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Fri, 19 Jun 2015 14:51:10 -0700 Subject: Cleanup: Do not check pointers before deleting them. R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1192743004. --- core/src/fxcodec/codec/fx_codec_icc.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'core/src/fxcodec/codec/fx_codec_icc.cpp') diff --git a/core/src/fxcodec/codec/fx_codec_icc.cpp b/core/src/fxcodec/codec/fx_codec_icc.cpp index 703d00a496..da503c03fd 100644 --- a/core/src/fxcodec/codec/fx_codec_icc.cpp +++ b/core/src/fxcodec/codec/fx_codec_icc.cpp @@ -514,17 +514,13 @@ CCodec_IccModule::~CCodec_IccModule() CFX_IccProfileCache* pProfileCache; while (pos) { m_MapProfile.GetNextAssoc(pos, key, (void*&)pProfileCache); - if (pProfileCache) { - delete pProfileCache; - } + delete pProfileCache; } pos = m_MapTranform.GetStartPosition(); CFX_IccTransformCache* pTransformCache; while (pos) { m_MapTranform.GetNextAssoc(pos, key, (void*&)pTransformCache); - if (pTransformCache) { - delete pTransformCache; - } + delete pTransformCache; } } void* CCodec_IccModule::CreateTransform_sRGB(const uint8_t* pProfileData, FX_DWORD dwProfileSize, int32_t& nComponents, int32_t intent, FX_DWORD dwSrcFormat) -- cgit v1.2.3