diff --git a/fish/fish.c b/fish/fish.c index 4a7e70b82..54989fc9b 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -550,7 +550,8 @@ prepare_drives (struct drv *drv) { if (drv) { prepare_drives (drv->next); - prepare_drive (drv->filename, drv->data, drv->device); + if (drv->data) + prepare_drive (drv->filename, drv->data, drv->device); } }