[ntoskrnl\mm]

- Fix a continuous loop bug in MiWriteProtectSystemImage.

svn path=/trunk/; revision=47048
This commit is contained in:
Michael Martin 2010-04-27 13:35:52 +00:00
parent e2463c955c
commit 60eddf5657

View file

@ -2154,6 +2154,10 @@ MiWriteProtectSystemImage(IN PVOID ImageBase)
{
/* Same protection, so merge the request */
CurrentAddress = BaseAddress + Size - 1;
/* Next */
Sections--;
Section++;
continue;
}