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



commit 63821bcecc00850a0926d0c244dbe09b5559d4fc
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 31f45ff..4b07bc7 100644
--- a/gtk/gtkwindow.c
+++ b/gtk/gtkwindow.c
@@ -6745,7 +6745,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]