Fix assertion when creating a removable media drive without filename

This commit is contained in:
Uwe Seimet 2023-11-04 15:12:21 +01:00
parent 07a4826167
commit 5afc6c3885

View File

@ -263,7 +263,7 @@ bool PiscsiExecutor::Attach(const CommandContext& context, const PbDeviceDefinit
return context.ReturnLocalizedError(LocalizationKey::ERROR_SCSI_CONTROLLER); return context.ReturnLocalizedError(LocalizationKey::ERROR_SCSI_CONTROLLER);
} }
if (storage_device != nullptr) { if (storage_device != nullptr && !storage_device->IsRemoved()) {
storage_device->ReserveFile(); storage_device->ReserveFile();
} }