8 Nov
2023
8 Nov
'23
12:16 p.m.
Rémi Bernon (@rbernon) commented about dlls/dmsynth/synth.c:
free(event); }
+ LIST_FOR_EACH_ENTRY_SAFE(voice, next, &This->voices, struct voice, entry) + { + list_remove(&voice->entry); + if (voice->wave)
You can remove the if there, wave cannot be NULL, same below. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/4339#note_51476