Author: pschweitzer Date: Thu Jul 14 12:46:31 2016 New Revision: 71939
URL: http://svn.reactos.org/svn/reactos?rev=71939&view=rev Log: [BOOTMGR] Don't use uninit var.
CID #1363650
Modified: trunk/reactos/boot/environ/app/bootmgr/bootmgr.c
Modified: trunk/reactos/boot/environ/app/bootmgr/bootmgr.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/environ/app/bootmgr/bo... ============================================================================== --- trunk/reactos/boot/environ/app/bootmgr/bootmgr.c [iso-8859-1] (original) +++ trunk/reactos/boot/environ/app/bootmgr/bootmgr.c [iso-8859-1] Thu Jul 14 12:46:31 2016 @@ -1470,7 +1470,7 @@ ) { PBL_LOADED_APPLICATION_ENTRY* Sequence; - ULONG Count; + ULONG Count = SequenceListCount; NTSTATUS Status;
/* Allocate the sequence list */