Hans Leidekker : mountmgr: Fix buffer length check.

Alexandre Julliard julliard at winehq.org
Thu Jun 4 16:08:02 CDT 2020


Module: wine
Branch: master
Commit: ea9b507380b4415cf9edd3643d9bcea7ab934fbd
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=ea9b507380b4415cf9edd3643d9bcea7ab934fbd

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Thu Jun  4 16:13:12 2020 +0200

mountmgr: Fix buffer length check.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49305
Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/mountmgr.sys/device.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/mountmgr.sys/device.c b/dlls/mountmgr.sys/device.c
index c29ce9f924..d99a096c61 100644
--- a/dlls/mountmgr.sys/device.c
+++ b/dlls/mountmgr.sys/device.c
@@ -1780,7 +1780,7 @@ static void query_property( struct disk_device *device, IRP *irp )
         if (!irp->UserBuffer
             || irpsp->Parameters.DeviceIoControl.OutputBufferLength < sizeof(STORAGE_DESCRIPTOR_HEADER))
             irp->IoStatus.u.Status = STATUS_INVALID_PARAMETER;
-        else if (irpsp->Parameters.DeviceIoControl.OutputBufferLength < sizeof(STORAGE_DEVICE_DESCRIPTOR))
+        else if (irpsp->Parameters.DeviceIoControl.OutputBufferLength < len)
         {
             descriptor = irp->UserBuffer;
             descriptor->Version = sizeof(STORAGE_DEVICE_DESCRIPTOR);




More information about the wine-cvs mailing list