projects
/
platform
/
upstream
/
efl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cb43636
)
ecore_evas: avoid using non initialized value for cursor position in X backend.
author
Cedric Bail
<cedric.bail@free.fr>
Thu, 17 Apr 2014 19:16:12 +0000
(21:16 +0200)
committer
Cedric Bail
<cedric.bail@free.fr>
Thu, 17 Apr 2014 19:16:12 +0000
(21:16 +0200)
CID
1195445
.
src/modules/ecore_evas/engines/x/ecore_evas_x.c
patch
|
blob
|
history
diff --git
a/src/modules/ecore_evas/engines/x/ecore_evas_x.c
b/src/modules/ecore_evas/engines/x/ecore_evas_x.c
index 97086cfb2b2e7913ab62b9fcb8ed2a8aefe00857..0de4dd69270ceac71eefa68e361ca1d2a87eced7 100644
(file)
--- a/
src/modules/ecore_evas/engines/x/ecore_evas_x.c
+++ b/
src/modules/ecore_evas/engines/x/ecore_evas_x.c
@@
-2970,7
+2970,7
@@
_ecore_evas_object_cursor_del(void *data, Evas *e EINA_UNUSED, Evas_Object *obj
static void
_ecore_evas_x_object_cursor_set(Ecore_Evas *ee, Evas_Object *obj, int layer, int hot_x, int hot_y)
{
- int x
, y
;
+ int x
= 0, y = 0
;
Evas_Object *old;
old = ee->prop.cursor.object;