summaryrefslogtreecommitdiff
path: root/libs/ardour/rb_effect.cc
diff options
context:
space:
mode:
authorRoss Lagerwall <rosslagerwall@gmail.com>2016-09-27 18:22:53 +0100
committerRoss Lagerwall <rosslagerwall@gmail.com>2016-09-27 18:22:53 +0100
commit2203e03831b2f5ef3f2791eb8c0148dd3c36f36a (patch)
treea3793b87e1df5df44d7a5f7676b44c0866215dff /libs/ardour/rb_effect.cc
parentdd1550b263d7ee5e83d7ed7b47d652e8aea18746 (diff)
Match new[] with delete[]
Diffstat (limited to 'libs/ardour/rb_effect.cc')
-rw-r--r--libs/ardour/rb_effect.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/rb_effect.cc b/libs/ardour/rb_effect.cc
index bc127e2d81..cd597c6f56 100644
--- a/libs/ardour/rb_effect.cc
+++ b/libs/ardour/rb_effect.cc
@@ -372,7 +372,7 @@ RBEffect::run (boost::shared_ptr<Region> r, Progress* progress)
if (buffers) {
for (uint32_t i = 0; i < channels; ++i) {
- delete buffers[i];
+ delete [] buffers[i];
}
delete [] buffers;
}