mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
Fix return value from GetObject gdi32_apitest (#7046)
This commit is contained in:
parent
cdb438552c
commit
c3a45b679d
1 changed files with 3 additions and 2 deletions
|
@ -265,10 +265,11 @@ GetObjectW(
|
|||
(dwType == GDI_OBJECT_TYPE_BRUSH) ||
|
||||
(dwType == GDI_OBJECT_TYPE_COLORSPACE) ||
|
||||
( (dwType == GDI_OBJECT_TYPE_EXTPEN) &&
|
||||
( (cbSize >= sizeof(EXTLOGPEN)) || (cbSize == 0) ) ) ||
|
||||
( (cbSize >= sizeof(EXTLOGPEN)))) ||
|
||||
( (dwType == GDI_OBJECT_TYPE_BITMAP) && (cbSize >= sizeof(BITMAP)) ))
|
||||
{
|
||||
SetLastError(ERROR_NOACCESS);
|
||||
if (cbSize)
|
||||
SetLastError(ERROR_NOACCESS);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue