avoid null deref

SVN revision: 55721
This commit is contained in:
Mike Blumenkrantz 2010-12-22 23:23:47 +00:00
parent c2afdae74c
commit 9224fcdb23
1 changed files with 1 additions and 1 deletions

View File

@ -2181,7 +2181,7 @@ _pager_desk_cb_mouse_move(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNU
if (((unsigned int) (dx * dx) + (unsigned int) (dy * dy)) <=
(resist * resist)) return;
pd->pager->dragging = 1;
if (pd->pager) pd->pager->dragging = 1;
pd->drag.start = 0;
}