this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add missing free

alice 2e325c3a aa6c946d

+2 -1
+1 -1
src/ext/cqt.c
··· 110 110 { 111 111 int idx = kernel->indices[k]; 112 112 // Ensure index is within bounds 113 - if (idx < 0 || idx > CQT_FFT_SIZE/2) 113 + if (idx < 0 || idx >= CQT_FFT_SIZE/2 + 1) 114 114 continue; 115 115 116 116 // Complex multiplication: (a + bi) * (c + di) = (ac - bd) + (ad + bc)i
+1
src/ext/cqt_kernel.c
··· 169 169 free(kernel->indices); 170 170 free(timeKernel); 171 171 free(freqKernel); 172 + free(tempWindow); 172 173 return false; 173 174 } 174 175