Module: wine Branch: master Commit: 2497a534844b4ad527abbe7bf33fb584aea60dfa URL: https://gitlab.winehq.org/wine/wine/-/commit/2497a534844b4ad527abbe7bf33fb58... Author: Ivo Ivanov <logos128(a)gmail.com> Date: Sat Feb 17 18:47:05 2024 +0200 hidclass.sys: Use the correct string for container_id. --- dlls/hidclass.sys/pnp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/hidclass.sys/pnp.c b/dlls/hidclass.sys/pnp.c index 39714abc6b1..e2bdd82f567 100644 --- a/dlls/hidclass.sys/pnp.c +++ b/dlls/hidclass.sys/pnp.c @@ -441,7 +441,7 @@ static WCHAR *query_container_id(DEVICE_OBJECT *device) WCHAR *dst; if ((dst = ExAllocatePool(PagedPool, size))) - memcpy(dst, ext->instance_id, size); + memcpy(dst, ext->container_id, size); return dst; }