aboutsummaryrefslogtreecommitdiffstats
path: root/testing/ladspa/fix-memleak-in-plugin-scanning.patch
diff options
context:
space:
mode:
authorCarlo Landmeter <clandmeter@gmail.com>2016-11-06 00:43:35 +0100
committerCarlo Landmeter <clandmeter@gmail.com>2016-11-06 00:46:38 +0100
commit772d8b3642fbce353d45f1e44982ea7a3b189801 (patch)
tree22846357155d159c84154c1f08b4e1439e421851 /testing/ladspa/fix-memleak-in-plugin-scanning.patch
parent1ce86fca5813fd1036cc9d50ac2fcbe5c4c779f2 (diff)
downloadaports-772d8b3642fbce353d45f1e44982ea7a3b189801.tar.bz2
aports-772d8b3642fbce353d45f1e44982ea7a3b189801.tar.xz
testing/ladspa: new aport
Diffstat (limited to 'testing/ladspa/fix-memleak-in-plugin-scanning.patch')
-rw-r--r--testing/ladspa/fix-memleak-in-plugin-scanning.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/ladspa/fix-memleak-in-plugin-scanning.patch b/testing/ladspa/fix-memleak-in-plugin-scanning.patch
new file mode 100644
index 000000000..bc8ef7c4b
--- /dev/null
+++ b/testing/ladspa/fix-memleak-in-plugin-scanning.patch
@@ -0,0 +1,11 @@
+--- ./search.c.orig 2008-11-07 00:38:18.000000000 +0100
++++ ./search.c 2008-11-07 00:50:51.000000000 +0100
+@@ -83,6 +83,8 @@
+ dlclose(pcFilename);
+ free(pcFilename);
+ }
++ } else {
++ free(pcFilename);
+ }
+ }
+ }