7 Aug
2025
7 Aug
'25
10:18 a.m.
Rémi Bernon (@rbernon) commented about dlls/cfgmgr32/main.c:
return TRUE; }
+struct devprop_filter_context +{ + const DEV_OBJECT *obj; + /* If true, don't use the property cache, as no other properties other than in obj->pProperties exist. */ + BOOL all_props; + ULONG props_cache_len; + DEVPROPERTY *props_cache; +}; + +static const char *debugstr_DEVPROPCOMPKEY( const DEVPROPCOMPKEY *key ) +{ + if (!key) return wine_dbg_sprintf("(null)");
```suggestion:-0+0 if (!key) return "(null)"; ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8723#note_112332