Fix assertion when creating a removable media drive without filename (#1308)

This commit is contained in:
Uwe Seimet
2023-11-05 09:11:53 +01:00
committed by GitHub
parent eb8afa8319
commit 39dd1d38a2

View File

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