commit 4b3f76bae9ce8be78a7c29edd265030cc436125f
parent c9d40150022116a1ab9d11d60ca07ceda7f7b67e
Author: Daniel Winzen <[email protected]>
Date: Tue, 23 Dec 2014 22:21:49 +0100
Fix memory leaks
Diffstat:
5 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/src/Effects/EQ.cpp b/src/Effects/EQ.cpp
@@ -44,6 +44,13 @@ EQ::EQ(EffectParams pars)
cleanup();
}
+EQ::~EQ()
+{
+ for(int i = 0; i < MAX_EQ_BANDS; ++i) {
+ memory.dealloc(filter[i].l);
+ memory.dealloc(filter[i].r);
+ }
+}
// Cleanup the effect
void EQ::cleanup(void)
diff --git a/src/Effects/EQ.h b/src/Effects/EQ.h
@@ -30,7 +30,7 @@ class EQ:public Effect
{
public:
EQ(EffectParams pars);
- ~EQ() {}
+ ~EQ();
void out(const Stereo<float *> &smp);
void setpreset(unsigned char npreset);
void changepar(int npar, unsigned char value);
diff --git a/src/Misc/Master.cpp b/src/Misc/Master.cpp
@@ -791,6 +791,7 @@ Master::~Master()
delete sysefx[nefx];
delete fft;
+ delete memory;
}
diff --git a/src/UI/Fl_PADnoteOvertonePosition.h b/src/UI/Fl_PADnoteOvertonePosition.h
@@ -30,6 +30,8 @@ class PADnoteOvertonePosition: public Fl_Box, Fl_Osc_Widget
osc->removeLink(base_path + "mode",
(Fl_Osc_Widget*) this);
delete [] spc;
+ delete [] nhr;
+ delete [] spectrum;
}
void init(void)
diff --git a/src/UI/MasterUI.fl b/src/UI/MasterUI.fl
@@ -1620,6 +1620,7 @@ npart=0;
npartcounter->do_callback();
syseffnocounter->do_callback();
inseffnocounter->do_callback();
+delete microtonalui;
microtonalui=new MicrotonalUI(osc, "/microtonal/");
updatesendwindow();
updatepanel();