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:
c5dce45
)
elementary: fix test breakage.
author
Cedric BAIL
<cedric@osg.samsung.com>
Fri, 7 Apr 2017 18:38:10 +0000
(11:38 -0700)
committer
Cedric BAIL
<cedric@osg.samsung.com>
Fri, 7 Apr 2017 18:38:10 +0000
(11:38 -0700)
It is perfectly valid to call this API with no pointer provided.
src/lib/elementary/efl_ui_win.c
patch
|
blob
|
history
diff --git
a/src/lib/elementary/efl_ui_win.c
b/src/lib/elementary/efl_ui_win.c
index
0c33c92
..
5640b6e
100644
(file)
--- a/
src/lib/elementary/efl_ui_win.c
+++ b/
src/lib/elementary/efl_ui_win.c
@@
-6446,8
+6446,8
@@
_efl_ui_win_elm_interface_atspi_component_extents_get(Eo *obj, Efl_Ui_Win_Data *
{
int ee_x, ee_y;
- *x = 0;
- *y = 0;
+
if (x)
*x = 0;
+
if (y)
*y = 0;
evas_object_geometry_get(obj, NULL, NULL, w, h);
if (screen_coords)
{