From 0fbfa61da91408154b49d38834f8e5e51d7da54f Mon Sep 17 00:00:00 2001 From: John Glover Date: Thu, 24 Jan 2013 16:17:54 +0100 Subject: [base] Array dealloc clean up. Check that array pointers are not null before deleting. Set array pointers to null after delete. --- src/simpl/base.cpp | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/simpl/base.cpp b/src/simpl/base.cpp index ea57c59..3504d95 100644 --- a/src/simpl/base.cpp +++ b/src/simpl/base.cpp @@ -70,8 +70,15 @@ void Frame::create_arrays() { } void Frame::destroy_arrays() { - delete [] _audio; - delete [] _residual; + if(_audio) { + delete [] _audio; + _audio = NULL; + } + if(_residual) { + delete [] _residual; + _residual = NULL; + } + destroy_synth_arrays(); } @@ -83,8 +90,14 @@ void Frame::create_synth_arrays() { } void Frame::destroy_synth_arrays() { - delete [] _synth; - delete [] _synth_residual; + if(_synth) { + delete [] _synth; + _synth = NULL; + } + if(_synth_residual) { + delete [] _synth_residual; + _synth_residual = NULL; + } } void Frame::clear() { -- cgit v1.2.3