Index: f-spot.git/src/Clients/MainApp/FSpot/App.cs =================================================================== --- f-spot.git.orig/src/Clients/MainApp/FSpot/App.cs 2010-09-15 19:21:06.978891732 +0100 +++ f-spot.git/src/Clients/MainApp/FSpot/App.cs 2010-09-15 19:21:26.041679597 +0100 @@ -223,7 +223,7 @@ { // Some users get wonky URIs here, trying to work around below. // https://bugzilla.gnome.org/show_bug.cgi?id=629248 - if (path.StartsWith ("gphoto2:usb:")) { + if (path != null && path.StartsWith ("gphoto2:usb:")) { path = String.Format ("gphoto2://[{0}]", path.Substring (8)); }