From c53c330eb19e3dd7196229542c1b630c3adf817f Mon Sep 17 00:00:00 2001 From: Lars Bilke <lars.bilke@ufz.de> Date: Mon, 11 Aug 2014 11:41:31 +0200 Subject: [PATCH] Verifying that a pointer value is not NULL is not required. http://www.viva64.com/en/d/0278/print/ --- GeoLib/Raster.cpp | 3 +-- MathLib/LinAlg/Sparse/CRSMatrixDiagPrecond.h | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/GeoLib/Raster.cpp b/GeoLib/Raster.cpp index d0d17df4de0..cf114d4bc89 100644 --- a/GeoLib/Raster.cpp +++ b/GeoLib/Raster.cpp @@ -50,8 +50,7 @@ void Raster::refineRaster(std::size_t scaling) Raster::~Raster() { - if (_raster_data != NULL) - delete [] _raster_data; + delete [] _raster_data; } void Raster::setCellSize(double cell_size) diff --git a/MathLib/LinAlg/Sparse/CRSMatrixDiagPrecond.h b/MathLib/LinAlg/Sparse/CRSMatrixDiagPrecond.h index 45942c486d6..8c87d0944d0 100644 --- a/MathLib/LinAlg/Sparse/CRSMatrixDiagPrecond.h +++ b/MathLib/LinAlg/Sparse/CRSMatrixDiagPrecond.h @@ -51,8 +51,7 @@ public: void calcPrecond() { - if (_inv_diag != NULL) - delete [] _inv_diag; + delete [] _inv_diag; _inv_diag = new double[_n_rows]; if (!generateDiagPrecond(_n_rows, _row_ptr, _col_idx, _data, _inv_diag)) { -- GitLab