GNOME Bugzilla – Bug 463901
gnome system log crashes under glib2.14/gtk+2.11.6
Last modified: 2007-11-30 18:27:31 UTC
Steps to reproduce: 1. open gnome-system-log 2. click on different log files that are monitored. 3. On the 3rd file, gnome-system-log crashes. Stack trace: gdb gnome-system-log GNU gdb 6.6 Copyright (C) 2006 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i686-pc-linux-gnu"... Using host libthread_db library "/lib/libthread_db.so.1". (gdb) run Starting program: /usr/bin/gnome-system-log [Thread debugging using libthread_db enabled] [New Thread -1225914688 (LWP 4229)] (gnome-system-log:4229): Gtk-CRITICAL **: _gtk_tree_view_find_path: assertion `node != NULL' failed Program received signal SIGSEGV, Segmentation fault.
+ Trace 153128
Thread NaN (LWP 4229)
Other information:
Created attachment 93138 [details] Full backtrace. Attached full backtrace.
the code in the system log viewer did not change and from what I can see, it's doing a perfectly legitimate call: gtk_combo_box_set_active (GTK_COMBO_BOX (logview->version_selector), log->current_version); where "log->current_version" in your stack trace is 0, which is a valid value - as the combo box in question will always have a first element: gtk_combo_box_append_text (GTK_COMBO_BOX (logview->version_selector), _("Current")); looks more like a bug in gtk+ itself, so re-assigning to get an opinion.
log is actually NULL, so log->current_version is a nullpointer dereference.
if log was NULL then it wouldn't even have reached that part of the function, since we check for this condition at the very beginning. the function is logview_update_version_bar(), at line 205 of log_repaint.c in gnome-utils/logview.
Crash is still there in latest gtk+ svn
Also an Ubuntu bug about this here: https://bugs.launchpad.net/gnome-utils/+bug/132637
Seems to be fixed in gtk+ svn r18682
The ubuntu bug has GNOME 2.20 duplicates
Sorry but why did you reopen? This is already fixed in 2.12.0
Created attachment 97865 [details] New backtrace It seems to be crashing again in gtk+ 2.12.1 I'm attaching a new backtrace. Please someone confirm the bug.
Created attachment 99885 [details] trace under gtk+ 2.12.2 and gnome 2.20.2 Still crashes under gtk+ 2.12.2
Check out the patch in bug 497489
(In reply to comment #12) > Check out the patch in bug 497489 > Yes, that patch in bug 497489 does fix it. Should I mark this bug as a duplicate of bug 497489?
Yes, please
*** This bug has been marked as a duplicate of 497489 ***