[PATCH 1/3] ndis.sys/tests: Test passing a bogus OID to IOCTL_NDIS_QUERY_GLOBAL_STATS.

Zebediah Figura zfigura at codeweavers.com
Wed Sep 22 21:23:49 CDT 2021


Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
---
 dlls/ndis.sys/tests/ndis.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/dlls/ndis.sys/tests/ndis.c b/dlls/ndis.sys/tests/ndis.c
index d6a2db0fd9d..2b448949b63 100644
--- a/dlls/ndis.sys/tests/ndis.c
+++ b/dlls/ndis.sys/tests/ndis.c
@@ -58,6 +58,15 @@ static void test_device(const WCHAR *service_name, const MIB_IF_ROW2 *row)
         return;
     }
 
+    oid = 0xdeadbeef;
+    iosb.Status = 0xdeadbeef;
+    iosb.Information = 0xdeadbeef;
+    status = NtDeviceIoControlFile( netdev, NULL, NULL, NULL, &iosb,
+            IOCTL_NDIS_QUERY_GLOBAL_STATS, &oid, sizeof(oid), &medium, sizeof(medium) );
+    todo_wine ok(status == STATUS_INVALID_PARAMETER, "got status %#x\n", status);
+    todo_wine ok(iosb.Status == 0xdeadbeef, "got %#x\n", iosb.Status);
+    todo_wine ok(iosb.Information == 0xdeadbeef, "got size %#Ix\n", iosb.Information);
+
     oid = OID_GEN_MEDIA_SUPPORTED;
     ret = DeviceIoControl( netdev, IOCTL_NDIS_QUERY_GLOBAL_STATS,
             &oid, sizeof(oid), &medium, sizeof(medium), &size, NULL );
-- 
2.33.0




More information about the wine-devel mailing list