mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 00:55:53 +00:00
Fixed a minor bug in MmAllocateSection().
svn path=/trunk/; revision=2292
This commit is contained in:
parent
78869da85f
commit
ef4b8d4947
1 changed files with 12 additions and 12 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: section.c,v 1.62 2001/09/25 19:52:28 dwelch Exp $
|
/* $Id: section.c,v 1.63 2001/10/10 22:40:36 hbirr Exp $
|
||||||
*
|
*
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
* FILE: ntoskrnl/mm/section.c
|
* FILE: ntoskrnl/mm/section.c
|
||||||
|
@ -2200,7 +2200,7 @@ MmAllocateSection (IN ULONG Length)
|
||||||
0,
|
0,
|
||||||
&marea,
|
&marea,
|
||||||
FALSE);
|
FALSE);
|
||||||
if (!NT_SUCCESS(STATUS_SUCCESS))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
MmUnlockAddressSpace(AddressSpace);
|
MmUnlockAddressSpace(AddressSpace);
|
||||||
return (NULL);
|
return (NULL);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue