From 6563166142b60f5857e4341f926e9cff7cc4cec1 Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Fri, 9 Aug 2019 11:50:56 -0500 Subject: [PATCH] hid: Fix looking up report in HidP_GetValueCaps. Signed-off-by: Andrew Eikum Signed-off-by: Alexandre Julliard --- dlls/hid/hidp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/hid/hidp.c b/dlls/hid/hidp.c index 8f4a474e2ab..59a4078c6c5 100644 --- a/dlls/hid/hidp.c +++ b/dlls/hid/hidp.c @@ -450,8 +450,8 @@ NTSTATUS WINAPI HidP_GetValueCaps(HIDP_REPORT_TYPE ReportType, PHIDP_VALUE_CAPS { for (i = 0; i < report[j].elementCount && u < v_count; i++) { - if (elems[report->elementIdx + i].ElementType == ValueElement) - ValueCaps[u++] = elems[report->elementIdx + i].caps.value; + if (elems[report[j].elementIdx + i].ElementType == ValueElement) + ValueCaps[u++] = elems[report[j].elementIdx + i].caps.value; } }