filechooser: Fix a crash when removing files

The file removal code was not properly clearing the file=>array index
cache, so later lookups into that cache would return invalid array
indexes.

The easiest way to reproduce it is to create a directory with two files
and deleting both of them.

Reported-by: Javier Jardón <jjardon@gnome.org>
This commit is contained in:
Benjamin Otte 2010-05-02 14:32:18 +02:00
parent 4cf9ac5b4d
commit b08a6750dc

View File

@ -1747,6 +1747,7 @@ remove_file (GtkFileSystemModel *model,
g_object_unref (node->info);
g_array_remove_index (model->files, id);
g_hash_table_remove_all (model->file_lookup);
/* We don't need to resort, as removing a row doesn't change the sorting order */
}