[gtk+/wip/csd: 120/134] window: Ensure stack value is not used uninitialised for titleless windows



commit 2ee72cc9bf612674563da6ac02d54fa4f8d611fa
Author: Rob Bradford <rob linux intel com>
Date:   Thu Apr 19 16:38:12 2012 +0100

    window: Ensure stack value is not used uninitialised for titleless windows
    
    The gtk_window_get_preferred_height function had an uninitialised variable in
    the case of the window not having a title box (e.g. popup windows.)

 gtk/gtkwindow.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c
index 603b1b6..e2e94a5 100644
--- a/gtk/gtkwindow.c
+++ b/gtk/gtkwindow.c
@@ -6716,7 +6716,7 @@ gtk_window_get_preferred_height (GtkWidget *widget,
   GtkStyleContext *context;
   GtkStateFlags state;
   guint border_width;
-  int title_min;
+  int title_min = 0;
 
   window = GTK_WINDOW (widget);
   priv = window->priv;


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