mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Correct bug do not enum other color deep that 8,16,24,32 it will create memmory leek other wise.
in the current code. svn path=/trunk/; revision=15493
This commit is contained in:
parent
b09db8ab65
commit
332a72f9b8
1 changed files with 6 additions and 3 deletions
|
@ -88,7 +88,7 @@ GetPossibleSettings(IN LPTSTR DeviceName, OUT DWORD* pSettingsCount, OUT PSETTIN
|
|||
PSETTINGS_ENTRY Settings = NULL;
|
||||
HDC hDC;
|
||||
PSETTINGS_ENTRY Current;
|
||||
DWORD bpp, xres, yres;
|
||||
DWORD bpp, xres, yres, checkbpp;
|
||||
|
||||
/* Get current settings */
|
||||
*CurrentSettings = NULL;
|
||||
|
@ -105,13 +105,16 @@ GetPossibleSettings(IN LPTSTR DeviceName, OUT DWORD* pSettingsCount, OUT PSETTIN
|
|||
while (EnumDisplaySettingsEx(DeviceName, iMode, &devmode, dwFlags))
|
||||
{
|
||||
|
||||
if (devmode.dmBitsPerPel==8 || devmode.dmBitsPerPel==16 || devmode.dmBitsPerPel==24 || devmode.dmBitsPerPel==32) checkbpp=1;
|
||||
else checkbpp=0;
|
||||
|
||||
if (devmode.dmPelsWidth < 640 ||
|
||||
devmode.dmPelsHeight < 480)
|
||||
devmode.dmPelsHeight < 480 || checkbpp == 0)
|
||||
{
|
||||
iMode++;
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
Current = HeapAlloc(GetProcessHeap(), 0, sizeof(SETTINGS_ENTRY));
|
||||
if (Current != NULL)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue