cmDspFx.c : Fixed uninitialized variable (n in _cmDspAudioNofM_Exec().
This commit is contained in:
parent
cd6a0b1891
commit
0a12858783
@ -3303,7 +3303,7 @@ cmDspRC_t _cmDspAudioNofM_Exec( cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspE
|
|||||||
unsigned i;
|
unsigned i;
|
||||||
const cmSample_t* x[ p->inChCnt ];
|
const cmSample_t* x[ p->inChCnt ];
|
||||||
cmSample_t* y[ p->outChCnt ];
|
cmSample_t* y[ p->outChCnt ];
|
||||||
unsigned n;
|
unsigned n = 0;
|
||||||
|
|
||||||
for(i=0; i<p->inChCnt; ++i)
|
for(i=0; i<p->inChCnt; ++i)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user