This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
DPF-Max-Gen
mirror of
https://github.com/DISTRHO/DPF-Max-Gen
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
Fix memory leak, cleanup
Signed-off-by: falkTX <falktx@falktx.com>
master
falkTX
3 years ago
parent
bfd9020f36
commit
fdfd21f263
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
7 changed files
with
7 additions
and
18 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
.github/workflows/build.yml
+1
-1
dpf
+1
-4
plugins/bitcrush/Makefile
+1
-0
plugins/common/gen_dsp/genlib.cpp
+1
-4
plugins/freeverb/Makefile
+1
-4
plugins/gigaverb/Makefile
+1
-4
plugins/pitchshift/Makefile
+ 1
- 1
.github/workflows/build.yml
View File
@@ -255,7 +255,7 @@ jobs:
- name: Build plugins
env:
CFLAGS: -g
CXXFLAGS: -g
CXXFLAGS: -g
-DDPF_ABORT_ON_ERROR
LDFLAGS: -static-libgcc -static-libstdc++
run: |
make features
+ 1
- 1
dpf
@@ -1 +1 @@
Subproject commit
e44a908375610d7f46b507532b4602c9f89f085a
Subproject commit
9aec1687c8ef5304efd8da6a65bdd1d0913fa612
+ 1
- 4
plugins/bitcrush/Makefile
View File
@@ -29,13 +29,10 @@ BUILD_CXX_FLAGS += -Wno-unused-parameter
# --------------------------------------------------------------
# Enable all possible plugin types
ifeq ($(HAVE_JACK),true)
TARGETS += jack
endif
TARGETS += ladspa
TARGETS += lv2_dsp
TARGETS += vst
TARGETS += vst
2
all: $(TARGETS)
+ 1
- 0
plugins/common/gen_dsp/genlib.cpp
View File
@@ -221,6 +221,7 @@ void genlib_data_release(t_genlib_data *b) {
genlib_sysmem_freeptr(self->info.data);
self->info.data = 0;
}
genlib_sysmem_freeptr(self);
}
long genlib_data_getcursor(t_genlib_data *b) {
+ 1
- 4
plugins/freeverb/Makefile
View File
@@ -29,13 +29,10 @@ BUILD_CXX_FLAGS += -Wno-unused-parameter
# --------------------------------------------------------------
# Enable all possible plugin types
ifeq ($(HAVE_JACK),true)
TARGETS += jack
endif
TARGETS += ladspa
TARGETS += lv2_dsp
TARGETS += vst
TARGETS += vst
2
all: $(TARGETS)
+ 1
- 4
plugins/gigaverb/Makefile
View File
@@ -29,13 +29,10 @@ BUILD_CXX_FLAGS += -Wno-unused-parameter
# --------------------------------------------------------------
# Enable all possible plugin types
ifeq ($(HAVE_JACK),true)
TARGETS += jack
endif
TARGETS += ladspa
TARGETS += lv2_dsp
TARGETS += vst
TARGETS += vst
2
all: $(TARGETS)
+ 1
- 4
plugins/pitchshift/Makefile
View File
@@ -29,13 +29,10 @@ BUILD_CXX_FLAGS += -Wno-unused-parameter
# --------------------------------------------------------------
# Enable all possible plugin types
ifeq ($(HAVE_JACK),true)
TARGETS += jack
endif
TARGETS += ladspa
TARGETS += lv2_dsp
TARGETS += vst
TARGETS += vst
2
all: $(TARGETS)
Write
Preview
Loading…
Cancel
Save