projects
/
platform
/
upstream
/
elementary.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d55ef56
)
Elementary els_scroller: Fixed a valgrind uinitialised_value error.
author
Tom Hacohen
<tom@stosb.com>
Thu, 17 Feb 2011 09:21:25 +0000
(09:21 +0000)
committer
Tom Hacohen
<tom@stosb.com>
Thu, 17 Feb 2011 09:21:25 +0000
(09:21 +0000)
Happens when pan_get doesn't set the coords.
SVN revision: 57117
src/lib/els_scroller.c
patch
|
blob
|
history
diff --git
a/src/lib/els_scroller.c
b/src/lib/els_scroller.c
index 3917928847e2b170c08f6cc08f1e90cd8a3e43c1..b9e7646d1305854fe2130a7e628559df64c8407e 100644
(file)
--- a/
src/lib/els_scroller.c
+++ b/
src/lib/els_scroller.c
@@
-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;