From 7d7448ba55095962844903ae5bce84d379fc4875 Mon Sep 17 00:00:00 2001 From: kevin Date: Thu, 12 Dec 2013 12:22:21 -0500 Subject: [PATCH] cmDspKr.c : Fixed uninitialized variable warning (n in _cmDspRecdPlayExec()). --- dsp/cmDspKr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsp/cmDspKr.c b/dsp/cmDspKr.c index 9f51fdd..9093b0c 100644 --- a/dsp/cmDspKr.c +++ b/dsp/cmDspKr.c @@ -2608,7 +2608,7 @@ cmDspRC_t _cmDspRecdPlayExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_ const cmSample_t* x[ p->chCnt ]; cmSample_t* y[ p->chCnt ]; - unsigned n; + unsigned n = 0; unsigned i; unsigned actChCnt = 0;