This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
DPF
mirror of
https://github.com/DISTRHO/DPF
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
Fix a memory leak in the Jack wrapper
pull/64/head
JP Cimalando
Filipe Coelho
<falktx@falktx.com>
5 years ago
parent
d49366db69
commit
59895e9f8f
1 changed files
with
8 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-0
distrho/src/DistrhoPluginJack.cpp
+ 8
- 0
distrho/src/DistrhoPluginJack.cpp
View File
@@ -204,6 +204,14 @@ public:
fLastOutputValues = nullptr;
}
#if DISTRHO_PLUGIN_HAS_UI
if (fParametersChanged != nullptr)
{
delete[] fParametersChanged;
fParametersChanged = nullptr;
}
#endif
fPlugin.deactivate();
if (fClient == nullptr)
Write
Preview
Loading…
Cancel
Save