GNOME Bugzilla – Bug 533456
Memory leak when window is destroyed
Last modified: 2009-08-07 09:53:38 UTC
Steps to reproduce: 1. Write a sample application having two windows. Create the second window from first window. Destroy the second window. 2. Memory allocated to second window upon creation is not getting freed but accumulates when second window is destroyed. 3. Platform - GTK+ 2.12.2 over DirectFB 1.1.1 over TI DaVinci on MontaVista Linux Stack trace: Other information: This is observed only in DirectFB backend but not in X window backed. Memory accumulates and eventually program crashes. sample program that shows memory leak: #include <gtk/gtk.h> GtkWidget* create_window1 (GtkWidget *); GtkWidget* create_window2 (void); void on_open_clicked (GtkButton *button, gpointer user_data) { /* open a pop-up window */ GtkWidget *window2 = create_window2 (); gtk_widget_show(window2); } void on_close_clicked (GtkButton *button, gpointer user_data) { GtkWidget *window = GTK_WIDGET(user_data); gtk_widget_destroy(window); } GtkWidget* create_window1 (GtkWidget *window2) { GtkWidget *window1; GtkWidget *fixed1; GtkWidget *open; GtkWidget *close; window1 = gtk_window_new (GTK_WINDOW_TOPLEVEL); gtk_widget_set_size_request (window1, 640, 480); gtk_window_set_title (GTK_WINDOW (window1), "window1"); fixed1 = gtk_fixed_new (); gtk_widget_show (fixed1); gtk_container_add (GTK_CONTAINER (window1), fixed1); open = gtk_button_new_with_mnemonic ("open"); gtk_widget_show (open); gtk_fixed_put (GTK_FIXED (fixed1), open, 208, 200); gtk_widget_set_size_request (open, 64, 40); close = gtk_button_new_with_mnemonic ("close"); gtk_widget_show (close); gtk_fixed_put (GTK_FIXED (fixed1), close, 296, 200); gtk_widget_set_size_request (close, 72, 40); /* send pointer to window1 to callback function */ g_signal_connect ((gpointer) open, "clicked", G_CALLBACK (on_open_clicked), window2); g_signal_connect ((gpointer) close, "clicked", G_CALLBACK (on_close_clicked), window1); return window1; } GtkWidget* create_window2 (void) { GtkWidget *window2; GtkWidget *fixed2; GtkWidget *close; window2 = gtk_window_new (GTK_WINDOW_POPUP); gtk_widget_set_size_request (window2, 320, 240); gtk_window_set_title (GTK_WINDOW (window2), "window2"); fixed2 = gtk_fixed_new (); gtk_widget_show (fixed2); gtk_container_add (GTK_CONTAINER (window2), fixed2); close = gtk_button_new_with_mnemonic ("close"); gtk_widget_show (close); gtk_fixed_put (GTK_FIXED (fixed2), close, 144, 112); gtk_widget_set_size_request (close, 80, 48); g_signal_connect ((gpointer) close, "clicked", G_CALLBACK (on_close_clicked), window2); return window2; } int main (int argc, char *argv[]) { GtkWidget *window1; gtk_init (&argc, &argv); /* create top window*/ window1 = create_window1 (window2); gtk_widget_show (window1); g_signal_connect ((gpointer) window1, "destroy", G_CALLBACK(gtk_main_quit), NULL); gtk_main (); return 0; }
Hi All, I observed recently that instead of creating window and destroying it as i've done before, if I destroy the contents of first window and create new widgets of second window in first window and do this repeatedly I observe no leak. In this case only one window will be created and if another window is needed, instead of destroying first window and creating another, only contents of first window are destroyed and contents of second are created instead.No memory leak was observed in this case. I guess while destroying window memory is leaking.
I found out the reason for leak. It was from GTK+ DirectFB backend. Functions which were responsible for de-allocating memory in DirectFB were not called. This resulted in accumulation of memory. The functions for deallocating memory (in gdk/directfb/gdkwindow-directfb.c _gdk_windowing_window_destroy function) was under an #if (DIRECTFB_MAJOR_VERSION >= 1) and I was using DirectFB 1.1.1. But DIRECTFB_MAJOR_VERSION was not defined anywhere in Gtk+ 2.12.2 so the compiler was taking it to be 0 by default and thus functions were not being called to de-allocate memory. After I defined it, I am not observing that huge leak which was crashing the application.
Not sure who set this to fixed but I think this is a issue in configure and should have been defined there. I'm assuming thats what was done ?
This should definitely fix it then. Applied to trunk and to gtk-2-14: 2009-02-18 Sven Neumann <sven@gimp.org> Bug 533456 – Memory leak when window is destroyed * gdk/directfb/gdkdirectfb.h * gdk/directfb/gdkprivate-directfb.h * gdk/directfb/gdkcursor-directfb.c * gdk/directfb/gdkevents-directfb.c * gdk/directfb/gdkwindow-directfb.c: removed all #ifdef checks for DIRECTFB_MAJOR_VERSION >= 1 and compile that code unconditionally. as we depend on DirectFB >= 1.0.0 now. Fixes a potential build issue that would lead to a memory leak as described in bug #533456.
*** Bug 591003 has been marked as a duplicate of this bug. ***