19 Jan
2026
19 Jan
'26
10:35 a.m.
Hans Leidekker (@hans) commented about dlls/wbemprox/builtin.c:
rec->caption = entities[i].caption; rec->class_guid = entities[i].class_guid; rec->device_id = entities[i].device_id; + rec->pnpdevice_id = entities[i].device_id;
This will cause rec->device_id to be freed twice when the object is released. You need to handle pnpdevice_id the same as device_id in get_pnp_entities(). -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9918#note_127297