After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 591000 - Memory Leak in Gtk::Window
Memory Leak in Gtk::Window
Status: RESOLVED DUPLICATE of bug 591003
Product: gtk+
Classification: Platform
Component: Widget: Other
2.4.x
Other All
: Normal critical
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2009-08-06 20:53 UTC by Phoenix
Modified: 2009-08-06 22:00 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Phoenix 2009-08-06 20:53:45 UTC
Please describe the problem:
I appear to be unable to recover the memory from a Gtk::Window object after deleting it.

The following tiny program creates a new window every 2 seconds and then destroys it. The program grows by ~3MB each iteration.


#include <gtkmm.h>
#include <iostream>

using namespace std;


class Win : public Gtk::Window
{
public:
        Win()
        {
                set_size_request(1024, 768);
                realize();
        }

        ~Win()
        {
                cerr << "Destroying window" << endl;
        }
};



int
main(int argc, char* argv[])
{
        Gtk::Main App(argc, argv);

        while (true) {
                Win* w = new Win;
                if (Gtk::Main::events_pending())
                        Gtk::Main::iteration();
                ::sleep(2);
                delete w;
        }

        exit (0);
}



Steps to reproduce:
1. Compile and run the above code snippet
2. Monitor the size of the program with any tool (e.g. top)
3. 


Actual results:
The program will consume 3MB per iteration until all memory and swap is depleted and then crash

Expected results:
Nothing - the there should be no increase in the size of the program

Does this happen every time?
yes

Other information:
Comment 1 Phoenix 2009-08-06 22:00:36 UTC

*** This bug has been marked as a duplicate of 591003 ***