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 669765 - metacity segfaults in oxygen theme (gtk2)
metacity segfaults in oxygen theme (gtk2)
Status: RESOLVED NOTGNOME
Product: gtk+
Classification: Platform
Component: Widget: Other
2.24.x
Other Linux
: Normal normal
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2012-02-09 18:21 UTC by Juan Luis Baptiste
Modified: 2012-02-10 06:58 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Juan Luis Baptiste 2012-02-09 18:21:08 UTC
Hi,

This comes from a bug reported at Mageia bugzilla:

https://bugs.mageia.org/show_bug.cgi?id=4408

oxygen-gtk developer reviewed the issue and determined that it is a GTK bug and should be reported here (see comment #3): 

----------------------------
The guilty code is (in details):

        gchar** gtkSearchPath;
        int nElements(0);
        gtk_icon_theme_get_search_path( gtk_icon_theme_get_default(),
&gtkSearchPath, &nElements );
        for( int i=0; i<nElements; i++ ) { searchPath.insert( gtkSearchPath[i]
); }

So from the gtk method call, I was expecting, by construction, gtkSearchPath[i]
not to be Null (never), or else it means nElements is just not calculated
right. 
-----------------------------

This is the initial bug description, please read the Mageia bug report for further details and backtraces:

metacity ( => gnome-classic, not gnome-shell & mutter) segfaults in oxygen
theme.
If you look at the GDB trace, you see the theme engine tries to dereference a
pointer in the NULL page

Version-Release number of selected component (if applicable):
lib64oxygen-gtk-1.2.0-2.mga2

How reproducible:
always

Steps to Reproduce:
1. switch Gtk+ theme to oxygen with gnome-tweak-tool
2. logout
3. login, session displays "an error happened"
4. run gdb from a console to see the trace
Comment 1 Matthias Clasen 2012-02-10 01:42:56 UTC
Taking a quick look at some of the stacktraces in the Mandriva bug:

Gtk-CRITICAL **: IA__gtk_icon_theme_get_search_path: assertion `GTK_IS_ICON_THEME (icon_theme)' failed

indicates that the GtkIconTheme object that gtk_icon_theme_get_search_path is called on is not valid. Anything after that critical is not really relevant...