[PATCH] hidparse.sys: Ignore unknown item types, rather than failing.

Rémi Bernon rbernon at codeweavers.com
Tue Oct 12 03:00:25 CDT 2021


Some DS4 controllers have a trailing NUL byte when accessed over
bluetooth. This causes parse_descriptor to return an error where we can
instead ignore it.

Signed-off-by: Rémi Bernon <rbernon at codeweavers.com>
---
 dlls/hidparse.sys/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/hidparse.sys/main.c b/dlls/hidparse.sys/main.c
index 18ee23974f0..d455049d9b1 100644
--- a/dlls/hidparse.sys/main.c
+++ b/dlls/hidparse.sys/main.c
@@ -628,7 +628,7 @@ struct hid_preparsed_data *parse_descriptor( BYTE *descriptor, unsigned int leng
 
         default:
             FIXME( "item type %x not implemented!\n", *ptr );
-            goto done;
+            break;
         }
 #undef SHORT_ITEM
     }
-- 
2.33.0




More information about the wine-devel mailing list