diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-07-18 20:15:07 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-07-18 20:15:07 -0500 |
commit | 78a06826be274bb4aded8ad5f946a873253db0f9 (patch) | |
tree | 6fadefabe4e00cc019047fd879ee17116ecccae1 /user/ladspa/fix-memleak-in-plugin-scanning.patch | |
parent | a21a34f267c015fb8431658665d48ed8c68d2d5e (diff) | |
download | packages-78a06826be274bb4aded8ad5f946a873253db0f9.tar.gz packages-78a06826be274bb4aded8ad5f946a873253db0f9.tar.bz2 packages-78a06826be274bb4aded8ad5f946a873253db0f9.tar.xz packages-78a06826be274bb4aded8ad5f946a873253db0f9.zip |
user/ladspa: pull in, modernise, fix up
Diffstat (limited to 'user/ladspa/fix-memleak-in-plugin-scanning.patch')
-rw-r--r-- | user/ladspa/fix-memleak-in-plugin-scanning.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/user/ladspa/fix-memleak-in-plugin-scanning.patch b/user/ladspa/fix-memleak-in-plugin-scanning.patch new file mode 100644 index 000000000..bc8ef7c4b --- /dev/null +++ b/user/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); + } + } + } |