diff --git a/ntoskrnl/io/iomgr/iomdl.c b/ntoskrnl/io/iomgr/iomdl.c index af108c40d4a..8b758d4cdf4 100644 --- a/ntoskrnl/io/iomgr/iomdl.c +++ b/ntoskrnl/io/iomgr/iomdl.c @@ -76,13 +76,13 @@ IoAllocateMdl(IN PVOID VirtualAddress, p = Irp->MdlAddress; while (p->Next) p = p->Next; p->Next = Mdl; - } - else - { + } + else + { /* Otherwise, insert it directly */ Irp->MdlAddress = Mdl; - } - } + } + } /* Return the allocated mdl */ return Mdl;