GNOME Bugzilla – Bug 523136
nautilus crashed with SIGSEGV in g_str_hash()
Last modified: 2011-04-06 20:19:40 UTC
The bug has been opened on https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/203393 "I was trying to eject a USB stick; nautilus hung and then crashed. Package: nautilus 1:2.22.0-0ubuntu3 .
+ Trace 192760
Thread 1 (process 10618)
Created attachment 118020 [details] [review] Don't call g_hash_table_lookup with NULL This is caused because nautilus calls g_hash_table_lookup without checking if it's using a NULL. The attached patch (against SVN 2008-09-04) adds the check.
I don't think that is the right fix. nautilus_file_get_uri() shouldn't ever return NULL. The only reason it can happen is if this fails: g_return_val_if_fail (NAUTILUS_IS_FILE (file), NULL); Which points to another problem. We're passing in an invalid (probably destroyed) file object.
Although nautilus_file_emit_changed() asserts that NAUTILUS_IS_FILE (file), so this looks weird. Perhaps a callback for the "changed" signal destroys the file. Of course, nautilus_directory_notify_files_removed() refs the files, so that would be unlikely too.
Marking pre 2.30 bugs with no dups as OBSOLETE.