28 Apr
2025
28 Apr
'25
1:06 p.m.
Huw Davies (@huw) commented about dlls/dsound/tests/dsound8.c:
secondary=NULL; }
- wfxe.Format.cbSize = sizeof(wfxe) + 1; + wfxe->Format.cbSize = sizeof(*wfxe) + 1;
Seems like here, for example, we set the size to be even larger, i.e. we'd need `sizeof(wfx) + sizeof(*wfxe) + 1` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7926#note_102043