Explorar el Código

Don't check unsigned int about negative values

Abdullah ibn Nadjo hace 7 años
padre
commit
55fe7a9eaf
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/light.c

+ 1
- 1
src/light.c Ver fichero

@@ -354,7 +354,7 @@ LIGHT_BOOL light_execute()
354 354
     return FALSE;
355 355
   }
356 356
 
357
-  if( hasMinCap && ( minCap < 0 || minCap > rawMax ) )
357
+  if( hasMinCap && minCap > rawMax )
358 358
   {
359 359
     LIGHT_WARN("invalid minimum cap for controller, ignoring and using 0");
360 360
     minCap = 0;