22 Oct
2022
22 Oct
'22
7:06 p.m.
On Fri Oct 21 13:37:13 2022 +0000, Bartosz Kosiorek wrote:
changed this line in [version 14 of the diff](/wine/wine/-/merge_requests/1120/diffs?diff_id=14967&start_sha=1fe0022187d425723510d747a81973ae0a57dd29#5cc40c9a9717f9205417155123fc4bce95d55d9d_651_651) I implemented it as you said:
if(_ismbblead_l(*str, locale) && (str[1] != '\n'))
return 2;
return 1;
But maybe se should compare it to zero: ``` if(_ismbblead_l(*str, locale) && (str[1] != 0)) return 2; return 1; ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1120#note_11828