https://bugs.winehq.org/show_bug.cgi?id=53739 --- Comment #3 from 399989567(a)qq.com --- Dear Nikolay Sivov: Through my attempts I found that the cause of the problem may be the following: (everything below is based on the commit "26e717c5653d2c6fcb29846e7d22aa97e37048e1") '''bash $ git reset 26e717c5653d2c6fcb29846e7d22aa97e37048e1 ''' In "dwrite/analyzer.c", there is a problem with the "fallback_map_characters" function, where the problem occurs as follows: '''C 2246: data = fallback->data.count == ~0u ? &system_fallback : &fallback->data; ''' When I force "data = fallback->data;" the problem is solved. So I guess there might be a problem with the assignment of "system_fallback" or with data.count, and I'm still looking into the cause of the problem. For now, it seems that the brute force solution is to force "data = &fallback->data;", but a more elegant solution is yet to be thought of. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.