We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6338d51 commit 9f97f0bCopy full SHA for 9f97f0b
ntoskrnl/kd64/kdapi.c
@@ -2291,6 +2291,17 @@ KdSystemDebugControl(
2291
switch (Command)
2292
{
2293
case SysDbgQueryVersion:
2294
+ if (OutputBufferLength != sizeof(DBGKD_GET_VERSION64))
2295
+ {
2296
+ Status = STATUS_INFO_LENGTH_MISMATCH;
2297
+ }
2298
+ else
2299
2300
+ KdpSysGetVersion((PDBGKD_GET_VERSION64)OutputBuffer);
2301
+ Status = STATUS_SUCCESS;
2302
2303
+ break;
2304
+
2305
case SysDbgReadVirtual:
2306
case SysDbgWriteVirtual:
2307
case SysDbgReadPhysical:
0 commit comments