Hello,
when Verifier is ON, IoCallDriver returns STATUS_WAIT_3.
What does it mean ? Should I ignore it ?
thanks,
Petr Kurtin
Hello,
when Verifier is ON, IoCallDriver returns STATUS_WAIT_3.
What does it mean ? Should I ignore it ?
thanks,
Petr Kurtin
Hi,
I believe Verifier does this to catch people who incorrectly do this:
if (status == STATUS_SUCCESS) {
}
As opposed to:
if (NT_SUCCESS(status)) {
}
Regards,
-scott
–
Scott Noone
Software Engineer
OSR Open Systems Resources, Inc.
http://www.osronline.com
“Petr Kurtin” wrote in message news:xxxxx@ntfsd…
Hello,
when Verifier is ON, IoCallDriver returns STATUS_WAIT_3.
What does it mean ? Should I ignore it ?
thanks,
Petr Kurtin