Nov. 28, 2023
6:31 p.m.
On Mon Nov 27 08:35:32 2023 +0000, eric pouech wrote:
I wonder if we'd rather use something like ```plaintext static int get_varidx_upper_boundary(int varidx) { if (varidx < 26) return 26; if (varidx < 52) return 52; return 62; } ``` and rather use ```plaintext varoffset < get_varidx_upper_boundary(varidx) ``` Checking of the upper boundary is not enough. Var offset should correspond to the given var index.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/4504#note_54127