https://bugzilla.novell.com/show_bug.cgi?id=223606 jpr@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO Info Provider| |federico@ximian.com ------- Comment #3 from jpr@novell.com 2006-12-15 06:53 MST ------- This particular case appears to crash because of the size of the ints in the indices. They take 10 chars to represent but gtk_tree_path_to_string only allocates for 8 chars per indice which has to include the ':' char as well as the trailing NULL. The indices values are equal to G_MAXINT though, so I think this is a gtk bug. The allocation in gtk_tree_path_to_string probably needs to be: g_new0 (gchar, path->depth * 11); The first indice doesn't include a ':' so it can account for the trailling NULL. Federico, sound right? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.