29 Feb
2024
29 Feb
'24
7:29 p.m.
Rémi Bernon (@rbernon) commented about dlls/dmime/tempotrack.c:
TRACE("(%p) ref=%ld\n", This, ref);
if (!ref) { - free(This->items); + struct tempo_entry *item, *next_item; + LIST_FOR_EACH_ENTRY_SAFE(item, next_item, &This->items, struct tempo_entry, entry) {
```suggestion:-3+0 if (!ref) { struct tempo_entry *item, *next_item; LIST_FOR_EACH_ENTRY_SAFE(item, next_item, &This->items, struct tempo_entry, entry) { ``` Lets fix those braces instead. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5190#note_63103