summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-10-03 12:28:56 +0200
committerJohn Glover <j@johnglover.net>2012-10-03 12:28:56 +0200
commitbec907bead3e9ba31b830b643d5dbdf651202264 (patch)
treef25dee44c2c8bc0cb9fa4cceb2703557a14f81ff /src
parent210043cd1e019833539e657888fb4291295de0fe (diff)
downloadsimpl-bec907bead3e9ba31b830b643d5dbdf651202264.tar.gz
simpl-bec907bead3e9ba31b830b643d5dbdf651202264.tar.bz2
simpl-bec907bead3e9ba31b830b643d5dbdf651202264.zip
[base] Bug fix: don't assign peak and partial
pointer arrays to NULL when clear_peaks and clear_partials methods are called as the generated Cython code won't compile. Just set the num_peaks and num_partials values to 0.
Diffstat (limited to 'src')
-rw-r--r--src/simpl/base.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/simpl/base.cpp b/src/simpl/base.cpp
index 75e0697..ea57c59 100644
--- a/src/simpl/base.cpp
+++ b/src/simpl/base.cpp
@@ -98,12 +98,10 @@ void Frame::clear() {
}
void Frame::clear_peaks() {
- _peaks.assign(_max_peaks, NULL);
_num_peaks = 0;
}
void Frame::clear_partials() {
- _partials.assign(_max_peaks, NULL);
_num_partials = 0;
}