Elementary els_scroller: Fixed a valgrind uinitialised_value error.

Happens when pan_get doesn't set the coords.

SVN revision: 57117
This commit is contained in:
Tom Hacohen 2011-02-17 09:21:25 +00:00
parent 4948a5b315
commit cc43f2aaba
1 changed files with 1 additions and 1 deletions

View File

@ -911,7 +911,7 @@ bounce_eval(Smart_Data *sd)
void
elm_smart_scroller_child_pos_set(Evas_Object *obj, Evas_Coord x, Evas_Coord y)
{
Evas_Coord mx = 0, my = 0, px, py, minx = 0, miny = 0;
Evas_Coord mx = 0, my = 0, px = 0, py = 0, minx = 0, miny = 0;
double vx, vy;
API_ENTRY return;