summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2013-01-24 16:17:54 +0100
committerJohn Glover <j@johnglover.net>2013-01-24 16:17:54 +0100
commit0fbfa61da91408154b49d38834f8e5e51d7da54f (patch)
treef5e41d1d9e829d903f12f70b96b0c872203a985c /src
parentc5358dfdd3bf2383a51c6e633b96317d335ee32e (diff)
downloadsimpl-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.cpp21
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() {