Explorar el Código

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

master
kevin hace 10 años
padre
commit
0a12858783
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      dsp/cmDspFx.c

+ 1
- 1
dsp/cmDspFx.c Ver fichero

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

Loading…
Cancelar
Guardar