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
1 changed files with 1 additions and 1 deletions

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();
}