mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 16:10:29 +00:00
[20:33] Stefan100: the code inside an ASSERT won't be executed on release
svn path=/trunk/; revision=40016
This commit is contained in:
parent
4a74095169
commit
aa0f6ce8d5
1 changed files with 2 additions and 1 deletions
|
@ -154,7 +154,8 @@ IPortFilterWaveCyclic_fnDeviceIoControl(
|
|||
|
||||
IoStack = IoGetCurrentIrpStackLocation(Irp);
|
||||
ASSERT(IoStack->Parameters.DeviceIoControl.IoControlCode == IOCTL_KS_PROPERTY);
|
||||
ASSERT(This->Port->lpVtbl->QueryInterface(This->Port, &IID_ISubdevice, (PVOID*)&SubDevice) == STATUS_SUCCESS);
|
||||
Status = This->Port->lpVtbl->QueryInterface(This->Port, &IID_ISubdevice, (PVOID*)&SubDevice);
|
||||
ASSERT(Status == STATUS_SUCCESS);
|
||||
ASSERT(SubDevice != NULL);
|
||||
|
||||
Status = SubDevice->lpVtbl->GetDescriptor(SubDevice, &Descriptor);
|
||||
|
|
Loading…
Reference in a new issue