[gtk+/gtk-3-22] grid: Remove unnecessary NULL checks



commit 46decc618204022529f95a97399b32f81c5cc7b3
Author: Timm Bäder <mail baedert org>
Date:   Fri Apr 28 11:25:21 2017 +0200

    grid: Remove unnecessary NULL checks
    
    The minimum and natural pointers passed to measure are never NULL and
    that's the only place where we call gtk_grid_get_size_for_size.

 gtk/gtkgrid.c |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)
---
diff --git a/gtk/gtkgrid.c b/gtk/gtkgrid.c
index 04896fa..b297555 100644
--- a/gtk/gtkgrid.c
+++ b/gtk/gtkgrid.c
@@ -1455,11 +1455,8 @@ gtk_grid_get_size_for_size (GtkGrid        *grid,
   GtkGridLines *lines;
   gint min_size, nat_size;
 
-  if (minimum)
-    *minimum = 0;
-
-  if (natural)
-    *natural = 0;
+  *minimum = 0;
+  *natural = 0;
 
   if (minimum_baseline)
     *minimum_baseline = -1;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]