1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 03:35:38 +03:00
aports/testing/ladspa/fix-memleak-in-plugin-scanning.patch
2016-11-06 00:46:38 +01:00

11 lines
231 B
Diff

--- ./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);
}
}
}