[BLUE] IOCTL_CONSOLE_DRAW: Fix ConsoleDraw.SizeX/Y boundary checks. Always set the cursor position before possibly refreshing screen.

This commit is contained in:
Hermès Bélusca-Maïto 2020-01-09 00:28:16 +01:00
parent f6de3342bf
commit 4ab49bc276
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -1455,6 +1455,14 @@ ScrIoControl(
break; break;
} }
Irp->IoStatus.Information = 0;
/* Set the cursor position, clipping it to the screen */
DeviceExtension->CursorX = min(max(ConsoleDraw.CursorX, 0), DeviceExtension->Columns - 1);
DeviceExtension->CursorY = min(max(ConsoleDraw.CursorY, 0), DeviceExtension->Rows - 1);
if (DeviceExtension->Enabled)
ScrSetCursor(DeviceExtension);
// TODO: For the moment if the ConsoleDraw rectangle has borders // TODO: For the moment if the ConsoleDraw rectangle has borders
// out of the screen-buffer we just bail out. Would it be better // out of the screen-buffer we just bail out. Would it be better
// to actually clip the rectangle within its borders instead? // to actually clip the rectangle within its borders instead?
@ -1464,8 +1472,8 @@ ScrIoControl(
Status = STATUS_SUCCESS; Status = STATUS_SUCCESS;
break; break;
} }
if ( ConsoleDraw.SizeX >= DeviceExtension->Columns - ConsoleDraw.X || if ( ConsoleDraw.SizeX > DeviceExtension->Columns - ConsoleDraw.X ||
ConsoleDraw.SizeY >= DeviceExtension->Rows - ConsoleDraw.Y ) ConsoleDraw.SizeY > DeviceExtension->Rows - ConsoleDraw.Y )
{ {
Status = STATUS_SUCCESS; Status = STATUS_SUCCESS;
break; break;
@ -1489,13 +1497,6 @@ ScrIoControl(
} }
} }
/* Set the cursor position, clipping it to the screen */
DeviceExtension->CursorX = min(max(ConsoleDraw.CursorX, 0), DeviceExtension->Columns - 1);
DeviceExtension->CursorY = min(max(ConsoleDraw.CursorY, 0), DeviceExtension->Rows - 1);
if (DeviceExtension->Enabled)
ScrSetCursor(DeviceExtension);
Irp->IoStatus.Information = 0;
Status = STATUS_SUCCESS; Status = STATUS_SUCCESS;
break; break;
} }