5 Jun
2025
5 Jun
'25
10:34 a.m.
d2d_fp_fast_expansion_sum_zeroelim contains many instances of this pattern: ```c if (a_idx < a_len) { use(a_curr); a_curr = a[++a_idx]; } ``` Here if a_idx is already a_len - 1, a[++a_idx] reads past the last element of a. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8213