efl_ui/scroll_manager: fix null derefs

Summary:
CID 1405811, 1405804
Depends on D10208

Reviewers: cedric

Reviewed By: cedric

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D10209
This commit is contained in:
Mike Blumenkrantz 2019-09-26 17:59:49 -04:00
parent f7befea043
commit 4a3b4e3b4a
1 changed files with 2 additions and 2 deletions

View File

@ -610,8 +610,8 @@ _efl_ui_scroll_manager_efl_ui_scrollbar_bar_mode_get(const Eo *obj EINA_UNUSED,
Efl_Ui_Scrollbar_Mode *hmode,
Efl_Ui_Scrollbar_Mode *vmode)
{
*hmode = sd->hbar_mode;
*vmode = sd->vbar_mode;
if (hmode) *hmode = sd->hbar_mode;
if (vmode) *vmode = sd->vbar_mode;
}
/* returns TRUE when we need to move the scroller, FALSE otherwise.