[SERIAL] Do not return NTSTATUS from an interrupt routine.
authorThomas Faber <thomas.faber@reactos.org>
Mon, 14 Jan 2019 08:10:22 +0000 (09:10 +0100)
committerThomas Faber <thomas.faber@reactos.org>
Sun, 24 Mar 2019 08:25:17 +0000 (09:25 +0100)
drivers/serial/serial/misc.c

index 36df0a1..8a87d7c 100644 (file)
@@ -297,7 +297,7 @@ done:
 
                /* We are now ready to handle another IRP, even if this one is not completed */
                DeviceExtension->WaitOnMaskIrp = NULL;
-               return STATUS_SUCCESS;
+               return TRUE;
        }
        return TRUE;
 }