Author: tfaber Date: Thu Feb 26 03:17:17 2015 New Revision: 66462
URL: http://svn.reactos.org/svn/reactos?rev=66462&view=rev Log: [NTOS:CM] - Ignore multiple consecutive backslashes in CmpGetNextName CORE-9267 #resolve
Modified: trunk/reactos/ntoskrnl/config/cmparse.c
Modified: trunk/reactos/ntoskrnl/config/cmparse.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/config/cmparse.c?r... ============================================================================== --- trunk/reactos/ntoskrnl/config/cmparse.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/config/cmparse.c [iso-8859-1] Thu Feb 26 03:17:17 2015 @@ -37,7 +37,7 @@ }
/* Check if we have a path separator */ - if (*RemainingName->Buffer == OBJ_NAME_PATH_SEPARATOR) + while (*RemainingName->Buffer == OBJ_NAME_PATH_SEPARATOR) { /* Skip it */ RemainingName->Buffer++;