diff options
author | John Glover <j@johnglover.net> | 2013-01-24 16:17:54 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2013-01-24 16:17:54 +0100 |
commit | 0fbfa61da91408154b49d38834f8e5e51d7da54f (patch) | |
tree | f5e41d1d9e829d903f12f70b96b0c872203a985c /src | |
parent | c5358dfdd3bf2383a51c6e633b96317d335ee32e (diff) | |
download | simpl-0fbfa61da91408154b49d38834f8e5e51d7da54f.tar.gz simpl-0fbfa61da91408154b49d38834f8e5e51d7da54f.tar.bz2 simpl-0fbfa61da91408154b49d38834f8e5e51d7da54f.zip |
[base] Array dealloc clean up.
Check that array pointers are not null before
deleting.
Set array pointers to null after delete.
Diffstat (limited to 'src')
-rw-r--r-- | src/simpl/base.cpp | 21 |
1 files changed, 17 insertions, 4 deletions
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() { |