1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

hidclass.sys: Use the correct string for container_id.

This commit is contained in:
Ivo Ivanov 2024-02-17 18:47:05 +02:00 committed by Alexandre Julliard
parent 8bd411da0a
commit 2497a53484

View file

@ -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;
}