aboutsummaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-12-15 18:13:04 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-12-15 18:13:04 +0000
commitc98ef1cec9c6c4f7d2c48a7a67e5638ca3e620d1 (patch)
tree3f877bd960e3cbd672361f8340f53e23773fcb95 /packages
parentfe5c060717cf47c2a5339e9f1b8e2ed614b03e2c (diff)
included in 0.43
svn path=/trunk/; revision=14646
Diffstat (limited to 'packages')
-rw-r--r--packages/patches/sine_cosine_sum_memory_leak_fix-0.41.4.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/packages/patches/sine_cosine_sum_memory_leak_fix-0.41.4.patch b/packages/patches/sine_cosine_sum_memory_leak_fix-0.41.4.patch
deleted file mode 100644
index 2763f42f..00000000
--- a/packages/patches/sine_cosine_sum_memory_leak_fix-0.41.4.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Index: g_array.c
-===================================================================
---- g_array.c (revision 9700)
-+++ g_array.c (working copy)
-@@ -1207,7 +1207,7 @@
-
- static void garray_sinesum(t_garray *x, t_symbol *s, int argc, t_atom *argv)
- {
-- t_float *svec = (t_float *)t_getbytes(sizeof(t_float) * argc);
-+ t_float *svec;
- int npoints, i;
- if (argc < 2)
- {
-@@ -1230,7 +1230,7 @@
-
- static void garray_cosinesum(t_garray *x, t_symbol *s, int argc, t_atom *argv)
- {
-- t_float *svec = (t_float *)t_getbytes(sizeof(t_float) * argc);
-+ t_float *svec;
- int npoints, i;
- if (argc < 2)
- {