mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
Fix another uninitialized value reported in #695
This commit is contained in:
parent
e6126bc218
commit
db26a60320
@ -346,7 +346,7 @@ static lv_res_t lv_spinbox_signal(lv_obj_t * spinbox, lv_signal_t sign, void * p
|
|||||||
|
|
||||||
lv_spinbox_ext_t * ext = lv_obj_get_ext_attr(spinbox);
|
lv_spinbox_ext_t * ext = lv_obj_get_ext_attr(spinbox);
|
||||||
|
|
||||||
lv_res_t res;
|
lv_res_t res = LV_RES_OK;
|
||||||
|
|
||||||
/* Include the ancient signal function */
|
/* Include the ancient signal function */
|
||||||
if(sign != LV_SIGNAL_CONTROLL)
|
if(sign != LV_SIGNAL_CONTROLL)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user