ntoskrnl.exe: Always set the IRP return size.

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Zebediah Figura 2019-08-06 22:48:43 -05:00 committed by Alexandre Julliard
parent d99ecb078b
commit dfc7132f50
2 changed files with 3 additions and 3 deletions

View File

@ -438,9 +438,9 @@ static NTSTATUS WINAPI dispatch_irp_completion( DEVICE_OBJECT *device, IRP *irp,
{
req->handle = wine_server_obj_handle( irp_handle );
req->status = irp->IoStatus.u.Status;
req->size = irp->IoStatus.Information;
if (irp->IoStatus.u.Status >= 0)
{
req->size = irp->IoStatus.Information;
if (out_buff) wine_server_add_data( req, out_buff, irp->IoStatus.Information );
}
status = wine_server_call( req );

View File

@ -445,7 +445,7 @@ static void test_return_status(void)
ok(!ret, "ioctl succeeded\n");
ok(GetLastError() == ERROR_MR_MID_NOT_FOUND, "got error %u\n", GetLastError());
todo_wine ok(!strcmp(buffer, "ghidef"), "got buffer %s\n", buffer);
todo_wine ok(ret_size == 3, "got size %u\n", ret_size);
ok(ret_size == 3, "got size %u\n", ret_size);
strcpy(buffer, "abcdef");
status = 0xceadbeef;
@ -455,7 +455,7 @@ static void test_return_status(void)
ok(!ret, "ioctl succeeded\n");
ok(GetLastError() == ERROR_MR_MID_NOT_FOUND, "got error %u\n", GetLastError());
ok(!strcmp(buffer, "abcdef"), "got buffer %s\n", buffer);
todo_wine ok(ret_size == 3, "got size %u\n", ret_size);
ok(ret_size == 3, "got size %u\n", ret_size);
}
static void test_driver3(void)