elementary: fix uninitialized data path in elm_flip.

SVN revision: 80210
This commit is contained in:
Cedric BAIL 2012-12-05 06:24:21 +00:00
parent dde0849bd9
commit fd79c7d9a1
3 changed files with 7 additions and 1 deletions

View File

@ -748,8 +748,11 @@
* Fix a possible divide by zero in els_scroller animator.
2012-12-04 Murilo Pinoti Belluzzo (mbelluzzo)
2012-12-04 Murilo Pinoti Belluzzo (mbelluzzo)
* Add elm_app_name_set/get(): Formal application name string.
* Add elm_app_destkop_entry_set/get(): Path to '.desktop' file.
2012-12-05 Cedric Bail
* Fix uninitialized data path in elm_flip.

View File

@ -72,6 +72,7 @@ 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.
Removals:

View File

@ -692,6 +692,8 @@ _state_update(Evas_Object *obj)
{
Vertex3 vo[4];
memset(vo, 0, sizeof (vo));
if (b > 0) nn = num + sd->slices_h - row - 1;
else nn = num + row;