]> git.eshelyaron.com Git - emacs.git/commitdiff
Pacify GCC on Ubuntu 17.10 x86-64
authorPaul Eggert <eggert@union>
Mon, 4 Dec 2017 01:58:08 +0000 (17:58 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 4 Dec 2017 02:18:01 +0000 (18:18 -0800)
* src/xfns.c (x_real_pos_and_offsets): Pull out parent frame
into a local, so that GCC doesn't warn about dereferencing
a possibly-null pointer.

src/xfns.c

index bbe73aa7c286d397aa667faaa92011e0fd70f3b6..f1c7fd6f3e43fc99df9012902a9ef13e897980e2 100644 (file)
@@ -215,8 +215,9 @@ x_real_pos_and_offsets (struct frame *f,
   int win_x = 0, win_y = 0, outer_x = 0, outer_y = 0;
   int real_x = 0, real_y = 0;
   bool had_errors = false;
-  Window win = (FRAME_PARENT_FRAME (f)
-               ? FRAME_X_WINDOW (FRAME_PARENT_FRAME (f))
+  struct frame *parent_frame = FRAME_PARENT_FRAME (f);
+  Window win = (parent_frame
+               ? FRAME_X_WINDOW (parent_frame)
                : f->output_data.x->parent_desc);
   struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
   long max_len = 400;
@@ -355,8 +356,8 @@ x_real_pos_and_offsets (struct frame *f,
        outer_geom_cookie = xcb_get_geometry (xcb_conn,
                                              FRAME_OUTER_WINDOW (f));
 
-      if ((dpyinfo->root_window == f->output_data.x->parent_desc)
-         && !FRAME_PARENT_FRAME (f))
+      if (!parent_frame
+         && dpyinfo->root_window == f->output_data.x->parent_desc)
        /* Try _NET_FRAME_EXTENTS if our parent is the root window.  */
        prop_cookie = xcb_get_property (xcb_conn, 0, win,
                                        dpyinfo->Xatom_net_frame_extents,
@@ -470,8 +471,7 @@ x_real_pos_and_offsets (struct frame *f,
 #endif
     }
 
-  if ((dpyinfo->root_window == f->output_data.x->parent_desc)
-      && !FRAME_PARENT_FRAME (f))
+  if (!parent_frame && dpyinfo->root_window == f->output_data.x->parent_desc)
     {
       /* Try _NET_FRAME_EXTENTS if our parent is the root window.  */
 #ifdef USE_XCB