GNOME Bugzilla – Bug 536968
Potentially huge leak because of the usage of the status bar
Last modified: 2008-06-29 11:06:33 UTC
Reported at https://bugzilla.novell.com/show_bug.cgi?id=397852 Michael Meeks had a nice case where he had 915813 messages in the status bar stack. That's, err, quite a lot of messages :-) That's happening because we push messages but nearly always forget to pop them. This is most visible on the desktop because it's the nautilus window that is always present. (it's also kind of weird to have a status bar for the desktop -- but maybe it's used in some way for a11y tools?) Attaching a patch to fix this.
Created attachment 112269 [details] [review] Plug status bar leak
Setting patch status as for Christian's comment on the nautilus m-l.
I committed this now to trunk and gnome-2-22 so that it will be in the tarball for GNOME 2.22.3. Closing as FIXED. 2008-06-29 Cosimo Cecchi <cosimoc@gnome.org> * src/nautilus-window.c: (nautilus_window_set_status): Fix a huge leak as messages were pushed in the statusbar but almost never popped. Patch by Vincent Untz. (#536968).