1
0
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:
Themba D 2019-01-03 07:16:25 -05:00 committed by GitHub
parent e6126bc218
commit db26a60320
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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_res_t res;
lv_res_t res = LV_RES_OK;
/* Include the ancient signal function */
if(sign != LV_SIGNAL_CONTROLL)