mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
Changes in v1.2.2 (5/4/2002)
- Fixed memory leak in menu.c svn path=/trunk/; revision=2906
This commit is contained in:
parent
5d75740eea
commit
86b351ce41
3 changed files with 12 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
Changes in v1.2.2 (5/4/2002)
|
||||
|
||||
- Fixed memory leak in menu.c
|
||||
|
||||
Changes in v1.2.1 (5/3/2002)
|
||||
|
||||
- Makefile updates
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
|
||||
/* just some stuff */
|
||||
#define VERSION "FreeLoader v1.2.1"
|
||||
#define VERSION "FreeLoader v1.2.2"
|
||||
#define COPYRIGHT "Copyright (C) 1998-2002 Brian Palmer <brianp@sginet.com>"
|
||||
|
||||
// FreeLoader version defines
|
||||
|
@ -34,7 +34,7 @@
|
|||
//
|
||||
#define FREELOADER_MAJOR_VERSION 1
|
||||
#define FREELOADER_MINOR_VERSION 2
|
||||
#define FREELOADER_PATCH_VERSION 1
|
||||
#define FREELOADER_PATCH_VERSION 2
|
||||
|
||||
|
||||
PUCHAR GetFreeLoaderVersionString(VOID);
|
||||
|
|
|
@ -173,6 +173,12 @@ BOOL DisplayMenu(PUCHAR MenuItemList[], ULONG MenuItemCount, ULONG DefaultMenuIt
|
|||
{
|
||||
*SelectedMenuItem = MenuInformation.SelectedMenuItem;
|
||||
}
|
||||
|
||||
//
|
||||
// Restore screen and free the memory
|
||||
//
|
||||
RestoreScreen(ScreenBuffer);
|
||||
FreeMemory(ScreenBuffer);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue