cmDspKr.c : Fixed uninitialized variable warning (n in _cmDspRecdPlayExec()).
This commit is contained in:
parent
0a12858783
commit
7d7448ba55
@ -2608,7 +2608,7 @@ cmDspRC_t _cmDspRecdPlayExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_
|
|||||||
|
|
||||||
const cmSample_t* x[ p->chCnt ];
|
const cmSample_t* x[ p->chCnt ];
|
||||||
cmSample_t* y[ p->chCnt ];
|
cmSample_t* y[ p->chCnt ];
|
||||||
unsigned n;
|
unsigned n = 0;
|
||||||
unsigned i;
|
unsigned i;
|
||||||
unsigned actChCnt = 0;
|
unsigned actChCnt = 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user