microsoft / Windows-driver-samples

This repo contains driver samples prepared for use with Microsoft Visual Studio and the Windows Driver Kit (WDK). It contains both Universal Windows Driver and desktop-only driver samples.
Microsoft Public License
7.01k stars 4.94k forks source link

[general/ioctl] data length incorrect #1164

Open ccdriver opened 7 months ago

ccdriver commented 7 months ago

in nonpnp sample, line 976 of nonpnp.c if (datalen <= OutputBufferLength) { RtlCopyMemory(buffer, data, datalen); } else { RtlCopyMemory(buffer, data, OutputBufferLength); }