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



commit f65747e5cc50f50b4511778a62a21ff37d527def
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 476cf89..73616ad 100644
--- a/gtk/gtkwindow.c
+++ b/gtk/gtkwindow.c
@@ -6762,7 +6762,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]