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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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();
}