Avoid closing the cdrom if we failed to open it.

This commit is contained in:
Alexandre Julliard 2003-10-03 04:35:55 +00:00
parent 78a7c5f28e
commit fbb5390a32

View file

@ -1915,11 +1915,10 @@ NTSTATUS CDROM_DeviceIoControl(DWORD clientID, HANDLE hDevice,
status = STATUS_INVALID_PARAMETER;
break;
}
CDROM_Close(clientID);
error:
piosb->u.Status = status;
piosb->Information = sz;
if (hEvent) NtSetEvent(hEvent, NULL);
CDROM_Close(clientID);
return status;
}