GNOME Bugzilla – Bug 634491
gtk_tree_path_append_index() is linear in the number of indices
Last modified: 2011-06-01 02:12:17 UTC
Because lots of code calls it repeatedly to build paths, this leads to O(n^2) behavior. See gtk_tree_path_new_from_string() for example. Instead, it should double the array when it needs to grow it.