This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
38
Wiki
Activity
Browse Source
Set pluginSettingsJ to NULL in settings::destroy().
tags/v2.2.0
Andrew Belt
2 years ago
parent
9407f0986b
commit
2cff78999a
1 changed files
with
3 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
src/settings.cpp
+ 3
- 1
src/settings.cpp
View File
@@ -101,8 +101,10 @@ void init() {
void destroy() {
void destroy() {
if (pluginSettingsJ)
if (pluginSettingsJ)
{
json_decref(pluginSettingsJ);
json_decref(pluginSettingsJ);
pluginSettingsJ = NULL;
}
}
}
Write
Preview
Loading…
Cancel
Save