https://bugzilla.novell.com/show_bug.cgi?id=223606 federico@ximian.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |federico@ximian.com Status|NEEDINFO |ASSIGNED Info Provider|federico@ximian.com | ------- Comment #4 from federico@ximian.com 2006-12-15 13:24 MST ------- This is correct; it's not allocating enough space. It would be nice to make gtk_tree_path_new_from_string() more paranoid as well; it uses a simple strtol() but: 1. It assigns the return value to an int, not a long. 2. It doesn't check for LONG_MIN or LONG_MAX and an errno of ERANGE. 3. After the check for longs, doesn't check for values larger than INT_MAX (tree paths use ints, not longs). -- 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.