cmDspFx.c : Fixed uninitialized variable (n in _cmDspAudioNofM_Exec().

This commit is contained in:
kevin 2013-12-12 12:21:54 -05:00
parent cd6a0b1891
commit 0a12858783

View File

@ -3303,7 +3303,7 @@ cmDspRC_t _cmDspAudioNofM_Exec( cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspE
unsigned i;
const cmSample_t* x[ p->inChCnt ];
cmSample_t* y[ p->outChCnt ];
unsigned n;
unsigned n = 0;
for(i=0; i<p->inChCnt; ++i)
{