mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
ee
This commit is contained in:
parent
fef772f75d
commit
b991c8892a
1 changed files with 6 additions and 0 deletions
|
@ -411,6 +411,12 @@ NTSTATUS HandleValidateDriversIOCTL(
|
||||||
Irp->IoStatus.Information = sizeof( MODULE_VALIDATION_FAILURE_HEADER ) +
|
Irp->IoStatus.Information = sizeof( MODULE_VALIDATION_FAILURE_HEADER ) +
|
||||||
MODULE_VALIDATION_FAILURE_MAX_REPORT_COUNT * sizeof( MODULE_VALIDATION_FAILURE );
|
MODULE_VALIDATION_FAILURE_MAX_REPORT_COUNT * sizeof( MODULE_VALIDATION_FAILURE );
|
||||||
|
|
||||||
|
RtlCopyMemory(
|
||||||
|
Irp->AssociatedIrp.SystemBuffer,
|
||||||
|
&header,
|
||||||
|
sizeof( MODULE_VALIDATION_FAILURE_HEADER )
|
||||||
|
);
|
||||||
|
|
||||||
for ( INT i = 0; i < head->count; i++ )
|
for ( INT i = 0; i < head->count; i++ )
|
||||||
{
|
{
|
||||||
/* make sure we free any non reported modules */
|
/* make sure we free any non reported modules */
|
||||||
|
|
Loading…
Reference in a new issue