Index: ntoskrnl/io/iomgr/driver.c =================================================================== --- ntoskrnl/io/iomgr/driver.c (revision 71111) +++ ntoskrnl/io/iomgr/driver.c (working copy) @@ -847,6 +847,9 @@ /* Free the temporary buffer */ ExFreePoolWithTag(Buffer, TAG_LDR_WSTR); + /* Free LoadedImports */ + ExFreePoolWithTag(LoadedImports, TAG_LDR_IMPORTS); + /* Check the result of the imports resolution */ if (!NT_SUCCESS(Status)) return Status;