elementary: more fix for an uninitialized path.

SVN revision: 80227
This commit is contained in:
Cedric BAIL 2012-12-05 10:13:00 +00:00
parent 72a68c56e3
commit 5bd109a655
3 changed files with 5 additions and 2 deletions

View File

@ -760,4 +760,4 @@
2012-12-05 Cedric Bail
* Fix uninitialized data path in elm_flip, elm_gesture_layer,
elm_interface_scrollable.
elm_interface_scrollable, els_scroller.

View File

@ -73,7 +73,8 @@ Fixes:
* Fix the naviframe to send signal emits one time for content show/hide, text show/hide.
* Fix case where tooltips could go offscreen unnecessarily
* Fix possible divide by zero in els_scroller animator.
* Fix uninitialized data path in elm_flip, elm_gesture_layer, elm_interface_scrollable.
* Fix uninitialized data path in elm_flip, elm_gesture_layer, elm_interface_scrollable,
els_scroller.
Removals:

View File

@ -2091,6 +2091,8 @@ _smart_hold_animator(void *data)
tdiff = sd->down.hist.est_timestamp_diff;
tnow = ecore_time_get() - tdiff;
memset(pos, 0, sizeof (pos));
for(i = 0; i < queue_size; i++)
{
x = sd->down.history[i].x;