Преглед изворни кода

Don't forget to init variables

Abdullah ibn Nadjo пре 7 година
родитељ
комит
0ecb5353aa
1 измењених фајлова са 3 додато и 0 уклоњено
  1. 3
    0
      src/light.c

+ 3
- 0
src/light.c Прегледај датотеку

@@ -341,6 +341,9 @@ LIGHT_BOOL light_initExecution(unsigned long *rawCurr, unsigned long *rawMax, LI
341 341
   if(light_Configuration.field == LIGHT_MIN_CAP ||
342 342
      light_Configuration.field == LIGHT_MAX_BRIGHTNESS)
343 343
   {
344
+    /* Init other values to 0 */
345
+    *rawCurr = *minCap = 0;
346
+    *hasMinCap = FALSE;
344 347
     return TRUE;
345 348
   }
346 349