1 parent a9b82a4 commit d8f81cbCopy full SHA for d8f81cb
1 file changed
lib/reverb/dsp/Delay.h
@@ -55,6 +55,7 @@ class Delay
55
{
56
size = next_power_of_2 (n);
57
assert (size <= (1 << 20));
58
+ free (data);
59
data = (sample_t *) calloc (sizeof (sample_t), size);
60
--size; /* used as mask for confining access */
61
write = n;
0 commit comments