elementary: fix test breakage.
authorCedric BAIL <cedric@osg.samsung.com>
Fri, 7 Apr 2017 18:38:10 +0000 (11:38 -0700)
committerCedric 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

index 0c33c92..5640b6e 100644 (file)
@@ -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)
      {