Index: thunar-vfs/thunar-vfs-volume-hal.c =================================================================== --- thunar-vfs/thunar-vfs-volume-hal.c (revision 21730) +++ thunar-vfs/thunar-vfs-volume-hal.c (working copy) @@ -294,9 +294,6 @@ } } - /* check if we were successfull */ - if (G_LIKELY (result)) - { /* try to figure out where the device was mounted */ path = thunar_vfs_volume_hal_find_mount_point (volume_hal, "/proc/mounts"); if (G_LIKELY (path != NULL)) @@ -310,6 +307,7 @@ /* tell everybody that we have a new state */ thunar_vfs_volume_changed (THUNAR_VFS_VOLUME (volume_hal)); + result = TRUE; } else { @@ -317,7 +315,6 @@ g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED, _("Failed to determine the mount point for %s"), volume_hal->device_file); result = FALSE; } - } return result; }