Author: pschweitzer Date: Mon Sep 21 16:49:49 2015 New Revision: 69310
URL: http://svn.reactos.org/svn/reactos?rev=69310&view=rev Log: [MOUNTMGR] MagicValue--;
Modified: trunk/reactos/drivers/filters/mountmgr/device.c
Modified: trunk/reactos/drivers/filters/mountmgr/device.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filters/mountmgr/de... ============================================================================== --- trunk/reactos/drivers/filters/mountmgr/device.c [iso-8859-1] (original) +++ trunk/reactos/drivers/filters/mountmgr/device.c [iso-8859-1] Mon Sep 21 16:49:49 2015 @@ -1108,7 +1108,7 @@ }
/* Allocate a buffer big enough to read reparse data */ - ReparseData = AllocatePool(0x4000); + ReparseData = AllocatePool(MAXIMUM_REPARSE_DATA_BUFFER_SIZE); if (ReparseData == NULL) { ZwClose(Handle); @@ -1121,7 +1121,7 @@ &IoStatusBlock, FSCTL_GET_REPARSE_POINT, NULL, 0, - ReparseData, 0x4000); + ReparseData, MAXIMUM_REPARSE_DATA_BUFFER_SIZE); ZwClose(Handle);
if (!NT_SUCCESS(Status))