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
6.75k stars 4.89k forks source link

[general/ioctl] data length incorrect #1164

Open ccdriver opened 2 months ago

ccdriver commented 2 months ago

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