mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 08:00:24 +00:00
fixing another crash for -O3
svn path=/trunk/; revision=27045
This commit is contained in:
parent
259286f6fc
commit
79583495ee
1 changed files with 7 additions and 1 deletions
|
@ -29,7 +29,11 @@ Main_DirectDraw_EnumDisplayModes(LPDIRECTDRAW7 iface, DWORD dwFlags,
|
|||
{
|
||||
DX_STUB_str("here\n");
|
||||
|
||||
if(!pCallback)
|
||||
if
|
||||
((!IsBadReadPtr(pCallback,sizeof(LPDDENUMMODESCALLBACK2))) ||
|
||||
(!IsBadWritePtr(pCallback,sizeof(LPDDENUMMODESCALLBACK2))) ||
|
||||
(!IsBadReadPtr(pDDSD,sizeof(DDSURFACEDESC2))) ||
|
||||
(!IsBadWritePtr(pDDSD,sizeof(DDSURFACEDESC2))))
|
||||
{
|
||||
ret = DDERR_INVALIDPARAMS;
|
||||
}
|
||||
|
@ -67,6 +71,8 @@ Main_DirectDraw_EnumDisplayModes(LPDIRECTDRAW7 iface, DWORD dwFlags,
|
|||
*/
|
||||
SurfaceDesc.ddpfPixelFormat.dwRGBBitCount = DevMode.dmBitsPerPel;
|
||||
|
||||
DX_STUB_str("here\n");
|
||||
|
||||
// FIXME1: This->lpLcl->lpGbl->dwMonitorFrequency is not set !
|
||||
if(dwFlags & DDEDM_REFRESHRATES && SurfaceDesc.dwRefreshRate != This->lpLcl->lpGbl->dwMonitorFrequency)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue