raster pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=b40fd20fbc5c5cc05f514929eddc1d4c08b93636

commit b40fd20fbc5c5cc05f514929eddc1d4c08b93636
Author: Carsten Haitzler (Rasterman) <[email protected]>
Date:   Sun Feb 12 14:57:57 2017 +0900

    e comp x - fix property fetch to use int ptr from the start
    
    this clears up soem warnings and do the cast on providing the pointer
    to ecore_x_window_prop_property_get() which since it has to allocate
    the data will be fine for alignment anyway, so a void * cast will do.
---
 src/bin/e_comp_x.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c
index c52d459..ccd781b 100644
--- a/src/bin/e_comp_x.c
+++ b/src/bin/e_comp_x.c
@@ -4496,16 +4496,14 @@ _e_comp_x_hook_client_fetch(void *d EINA_UNUSED, 
E_Client *ec)
      }
    if (cd->fetch_gtk_frame_extents)
      {
-        unsigned char *data;
+        unsigned int *extents;
         int count;
 
         if (ecore_x_window_prop_property_get(win,
                                              ATM_GTK_FRAME_EXTENTS,
                                              ECORE_X_ATOM_CARDINAL, 32,
-                                             &data, &count))
+                                             (void *)(&extents), &count))
           {
-             unsigned int *extents = (unsigned int*)data;
-
              /* _GTK_FRAME_EXTENTS describes a region l/r/t/b pixels
               * from the "window" object in which shadows will be drawn.
               * this area should not be accounted for in sizing or
@@ -4517,7 +4515,7 @@ _e_comp_x_hook_client_fetch(void *d EINA_UNUSED, E_Client 
*ec)
                 (ec->x == ec->comp_data->initial_attributes.x) &&
                 (ec->y == ec->comp_data->initial_attributes.y))
                e_comp_object_frame_xy_adjust(ec->frame, ec->x, ec->y, &ec->x, 
&ec->y);
-             free(data);
+             free(extents);
           }
         cd->fetch_gtk_frame_extents = 0;
      }

-- 


Reply via email to