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 742674 - Warnings when loading Inspector on 32-bit systems
Warnings when loading Inspector on 32-bit systems
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Debugging
3.14.x
Other All
: Normal major
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on: 742664
Blocks:
 
 
Reported: 2015-01-09 21:33 UTC by Emmanuele Bassi (:ebassi)
Modified: 2015-01-09 21:37 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Emmanuele Bassi (:ebassi) 2015-01-09 21:33:36 UTC
+++ This bug was initially created as a clone of Bug #742664 +++

- during initialization the GTK-Inspector spits a lot of g_warnings, like
  
  Gtk-WARNING **: gtktreestore.c:1042: Invalid column number
  58682896 added to iter (remember to end your list of columns with a -1)

   These are due to size mismatch between resource-list .c and .ui of
   GtkTreeStore::model::column[3] as guint64 vs gsize in code.
Comment 1 Emmanuele Bassi (:ebassi) 2015-01-09 21:37:06 UTC
ah, I didn't realize that Matthias already fixed the issue as well:

commit c2ff89bbe3beaf101dc9713acff3edafc1b0b705
Author: Matthias Clasen <mclasen@redhat.com>
Date:   Fri Jan 9 14:44:26 2015 -0500

    inspector: be careful about gsize vs guint64
    
    Since gsize doesn't work as a typename in a ui file,
    we have to be careful not to pass pointers to wrongly
    sized variables when getting the guint64 values out
    of the model.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=742664