Explorar el Código

cmRtSys.c: cmRtSysContext() now checks validity of rtSubIdx.

master
kevin hace 11 años
padre
commit
ca3fb3ec80
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3
    0
      cmRtSys.c

+ 3
- 0
cmRtSys.c Ver fichero

@@ -1220,6 +1220,9 @@ cmRtSysCtx_t* cmRtSysContext( cmRtSysH_t h, unsigned rtSubIdx )
1220 1220
   if( _cmRtSysVerifyInit(p,true) != kOkRtRC )
1221 1221
     return NULL;
1222 1222
 
1223
+  if( rtSubIdx >= p->ssCnt )
1224
+    return NULL;
1225
+
1223 1226
   return &p->ssArray[rtSubIdx].ctx;
1224 1227
 }
1225 1228
 

Loading…
Cancelar
Guardar