WDSP: fixed Sonar bug issue

pull/2214/head
f4exb 2024-07-20 10:35:54 +02:00
rodzic 0fd169c008
commit f6d97efe55
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -437,7 +437,7 @@ void CFCOMP::SetCFCOMPPosition (TXA& txa, int pos)
void CFCOMP::SetCFCOMPprofile (TXA& txa, int nfreqs, float* F, float* G, float *E)
{
CFCOMP *a = txa.cfcomp.p;
a->nfreqs = nfreqs;
a->nfreqs = nfreqs < 1 ? 1 : nfreqs;
delete[] (a->E);
delete[] (a->F);
delete[] (a->G);