GNOME Bugzilla – Bug 591000
Memory Leak in Gtk::Window
Last modified: 2009-08-06 22:00:36 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:
*** This bug has been marked as a duplicate of 591003 ***