Explorar el Código

cmDspKr.c : Fixed uninitialized variable warning (n in _cmDspRecdPlayExec()).

master
kevin hace 11 años
padre
commit
7d7448ba55
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      dsp/cmDspKr.c

+ 1
- 1
dsp/cmDspKr.c Ver fichero

@@ -2608,7 +2608,7 @@ cmDspRC_t _cmDspRecdPlayExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_
2608 2608
 
2609 2609
   const cmSample_t* x[ p->chCnt ];
2610 2610
   cmSample_t*       y[ p->chCnt ];
2611
-  unsigned n;
2611
+  unsigned n = 0;
2612 2612
   unsigned i;
2613 2613
   unsigned actChCnt = 0;
2614 2614
 

Loading…
Cancelar
Guardar