[ros-diffs] [hbirr] 16577: Returned STATUS_NOT_IMPLEMENTED for requests other than read or write.

hbirr at svn.reactos.com hbirr at svn.reactos.com
Fri Jul 15 16:30:42 CEST 2005


Returned STATUS_NOT_IMPLEMENTED for requests other than read or write.
Modified: trunk/reactos/drivers/dd/null/null.c
  _____  

Modified: trunk/reactos/drivers/dd/null/null.c
--- trunk/reactos/drivers/dd/null/null.c	2005-07-15 14:18:45 UTC
(rev 16576)
+++ trunk/reactos/drivers/dd/null/null.c	2005-07-15 14:29:58 UTC
(rev 16577)
@@ -93,15 +93,17 @@

      break;
 
     default:
-     Irp->IoStatus.Information = 0;
-     nErrCode = STATUS_NOT_IMPLEMENTED;
+     ASSERT(FALSE);
+
    }
 
    break;
   }
 
   default:
-   ASSERT(FALSE);
+   Irp->IoStatus.Information = 0;
+   nErrCode = STATUS_NOT_IMPLEMENTED;
+
  }
 
  Irp->IoStatus.Status = nErrCode;
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.reactos.org/pipermail/ros-diffs/attachments/20050715/68fb2412/attachment.html


More information about the Ros-diffs mailing list