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 690792 - Crash at glade_gtk_cell_renderer_sync_attributes()
Crash at glade_gtk_cell_renderer_sync_attributes()
Status: RESOLVED OBSOLETE
Product: glade
Classification: Applications
Component: general
3.8.x
Other Linux
: Normal normal
: ---
Assigned To: Glade 3 Maintainers
Glade 3 Maintainers
Depends on:
Blocks:
 
 
Reported: 2012-12-27 21:56 UTC by Ivan Baldo
Modified: 2018-03-26 15:26 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Ivan Baldo 2012-12-27 21:56:02 UTC
glade_gtk_cell_renderer_sync_attributes() crashes sometimes.

I think this code:
  /* Apply attributes to renderer when bound to a model in runtime */
  widget = glade_widget_get_from_gobject (object);
  if (widget->parent == NULL) return FALSE;

Should be changed to:
  GladeWidget *parent;
  /* Apply attributes to renderer when bound to a model in runtime */
  widget = glade_widget_get_from_gobject (object);
  parent = glade_widget_get_parent (widget);
  if (parent == NULL)
    return FALSE;

Thats the code used in master for the new version of Glade and should be backported to 3.8.x.

While you are there, please notice the double call to
  widget = glade_widget_get_from_gobject (object);
Maybe it is unnecessary (that double call is also in Master).

Thanks!!! Have a good 2013!
Comment 1 GNOME Infrastructure Team 2018-03-26 15:26:31 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to GNOME's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.gnome.org/GNOME/glade/issues/113.