aboutsummaryrefslogtreecommitdiffstats
path: root/community/ladspa/fix-memleak-in-plugin-scanning.patch
diff options
context:
space:
mode:
authorWilliam Pitcock <nenolod@dereferenced.org>2018-03-01 03:12:40 +0000
committerWilliam Pitcock <nenolod@dereferenced.org>2018-03-01 03:12:40 +0000
commit76eece044aa82f4c8193c1424da1ed73b231e01b (patch)
treeff826b82f3e08da501bd0481ce07c5b89d8347d2 /community/ladspa/fix-memleak-in-plugin-scanning.patch
parent2fdd33f3eb99b9e8503b37e5557d01f019c463de (diff)
downloadaports-76eece044aa82f4c8193c1424da1ed73b231e01b.tar.bz2
aports-76eece044aa82f4c8193c1424da1ed73b231e01b.tar.xz
community/ladspa: move from testing
Diffstat (limited to 'community/ladspa/fix-memleak-in-plugin-scanning.patch')
-rw-r--r--community/ladspa/fix-memleak-in-plugin-scanning.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/community/ladspa/fix-memleak-in-plugin-scanning.patch b/community/ladspa/fix-memleak-in-plugin-scanning.patch
new file mode 100644
index 0000000000..bc8ef7c4b3
--- /dev/null
+++ b/community/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);
+ }
+ }
+ }