[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:
James Tabor 2019-03-14 12:00:53 -05:00
parent b91cf860cd
commit b4624f32f3

View file

@ -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 */