mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[NTOS:MM] Remove a check for now
This commit is contained in:
parent
1f796267bc
commit
674ab3dce3
1 changed files with 5 additions and 1 deletions
|
@ -4356,12 +4356,17 @@ MmCreateSection (OUT PVOID * Section,
|
|||
FileLock = TRUE;
|
||||
|
||||
/* Deny access if there are writes on the file */
|
||||
#if 0
|
||||
if ((AllocationAttributes & SEC_IMAGE) && (Status == STATUS_FILE_LOCKED_WITH_WRITERS))
|
||||
{
|
||||
DPRINT1("Cannot create image maps with writers open on the file!\n");
|
||||
Status = STATUS_ACCESS_DENIED;
|
||||
goto Quit;
|
||||
}
|
||||
#else
|
||||
if ((AllocationAttributes & SEC_IMAGE) && (Status == STATUS_FILE_LOCKED_WITH_WRITERS))
|
||||
DPRINT1("Creating image map with writers open on the file!\n");
|
||||
#endif
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -4415,7 +4420,6 @@ MmCreateSection (OUT PVOID * Section,
|
|||
Status = STATUS_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
Quit:
|
||||
if (FileLock)
|
||||
FsRtlReleaseFile(FileObject);
|
||||
if (FileObject)
|
||||
|
|
Loading…
Reference in a new issue