mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
[WIN32K]
- don't create a rect with a zero area in NtGdiExtFloodFill CORE-8755 svn path=/trunk/; revision=65273
This commit is contained in:
parent
6eb52f4986
commit
46f478ab95
1 changed files with 1 additions and 1 deletions
|
@ -1132,7 +1132,7 @@ NtGdiExtFloodFill(
|
|||
goto cleanup;
|
||||
}
|
||||
else
|
||||
RECTL_vSetRect(&DestRect, 0, psurf->SurfObj.sizlBitmap.cx, 0, psurf->SurfObj.sizlBitmap.cy);
|
||||
RECTL_vSetRect(&DestRect, 0, 0, psurf->SurfObj.sizlBitmap.cx, psurf->SurfObj.sizlBitmap.cy);
|
||||
|
||||
DC_vPrepareDCsForBlit(dc, &DestRect, NULL, NULL);
|
||||
|
||||
|
|
Loading…
Reference in a new issue