We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9961292 commit a62cac1Copy full SHA for a62cac1
cava.c
@@ -675,7 +675,6 @@ Keys:\n\
675
}
676
} // resize terminal
677
cava_destroy(plan);
678
- free(plan);
679
audio_raw_clean(&audio_raw);
680
} // reloading config
681
cavacore.c
@@ -485,6 +485,8 @@ void cava_destroy(struct cava_plan *p) {
485
fftw_free(p->in_r_raw);
486
fftw_destroy_plan(p->p_r);
487
488
+
489
+ free(p);
490
491
492
#ifdef __ANDROID__
cavacore_test.c
@@ -95,7 +95,6 @@ void main() {
95
bp_ok = 0;
96
97
98
99
free(cava_in);
100
free(cava_out);
101
if (bp_ok == 1) {
0 commit comments