mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[GDI32] Fix issue after a Flush
While flushing the DC handle goes down with the flush. This was not a regression, just untested old code.
This commit is contained in:
parent
b91cf860cd
commit
b4624f32f3
1 changed files with 6 additions and 0 deletions
|
@ -409,6 +409,12 @@ GdiAllocBatchCommand(
|
|||
/* Call win32k, the kernel will call NtGdiFlushUserBatch to flush
|
||||
the current batch */
|
||||
NtGdiFlush();
|
||||
|
||||
// If Flushed, lose the hDC for this batch job! See CORE-15839.
|
||||
if (hdc)
|
||||
{
|
||||
if (!pTeb->GdiTebBatch.HDC) pTeb->GdiTebBatch.HDC = hdc;
|
||||
}
|
||||
}
|
||||
|
||||
/* Get the head of the entry */
|
||||
|
|
Loading…
Reference in a new issue