https://bugzilla.novell.com/show_bug.cgi?id=401243 User federico@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=401243#c14 Federico Mena Quintero <federico@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|Critical |Major Priority|P5 - None |P2 - High Status Whiteboard| |gnome-crash --- Comment #14 from Federico Mena Quintero <federico@novell.com> 2008-06-23 10:42:29 MDT --- It crashes here: #8 <signal handler called> #9 0xb6ac69c8 in strcmp () from /lib/libc.so.6 #10 0x081149c1 in nautilus_file_operations_copy_move (item_uris=0x829d090, relative_item_points=0x875d498, target_dir=0x853d5d0 "file:///home/federico/Desktop", copy_action=GDK_ACTION_COPY, parent_view=0x84a9ef8, done_callback=0x80b16ab <copy_move_done_callback>, done_callback_data=0x85e2cd0) at nautilus-file-operations.c:4798 #11 0x080be3a6 in fm_directory_view_move_copy_items (item_uris=0x829d090, relative_item_points=0x875d498, target_uri=0x853d5d0 "file:///home/federico/Desktop", copy_action=2, x=202, y=751, view=0x84a9ef8) at fm-directory-view.c:8288 #12 0x080bf190 in fm_directory_view_handle_uri_list_drop (view=0x84a9ef8, item_uris=0x875b7d8 "/usr/share/wallpapers/suse103-1920x1200.jpg\r\n", target_uri=0x853d5d0 "file:///home/federico/Desktop", action=GDK_ACTION_COPY, x=202, y=751) at fm-directory-view.c:8645 #13 0x080c9064 in icon_view_handle_uri_list (container=0x81c3128, item_uris=0x875b7d8 "/usr/share/wallpapers/suse103-1920x1200.jpg\r\n", target_uri=0x853d5d0 "file:///home/federico/Desktop", action=GDK_ACTION_COPY, x=202, y=751, view=0x84a9ef8) at fm-icon-view.c:2509 #10 0x081149c1 in nautilus_file_operations_copy_move (item_uris=0x829d090, relative_item_points=0x875d498, target_dir=0x853d5d0 "file:///home/federico/Desktop", copy_action=GDK_ACTION_COPY, parent_view=0x84a9ef8, done_callback=0x80b16ab <copy_move_done_callback>, done_callback_data=0x85e2cd0) at nautilus-file-operations.c:4798 4798 if (strcmp (file_scheme, "burn") != 0) { because file_scheme = NULL. This comes from 4795 for (p = location_list_from_uri_list (item_uris); p != NULL; p = p->next) { 4796 file_scheme = g_file_get_uri_scheme ((GFile *)p->data); and item_uris is a single-element list where (gdb) p (char *) item_uris->data $8 = 0x878a5b0 "/usr/share/wallpapers/suse103-1920x1200.jpg" Looks like we could simply use g_file_has_uri_scheme() instead of a manual strcmp(). -- 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.