[Bug 36876] New: Incorrect check for bad points in draw_poly()
http://bugs.winehq.org/show_bug.cgi?id=36876 Bug ID: 36876 Summary: Incorrect check for bad points in draw_poly() Product: Wine Version: 1.7.21 Hardware: x86 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: gdiplus Assignee: wine-bugs(a)winehq.org Reporter: maksqwe1(a)ukr.net graphics.c 1751 if((i + 2 >= count) || !(types[i + 1] & PathPointTypeBezier) || !(types[i + 1] & PathPointTypeBezier)) { I think should be: if((i + 2 >= count) || !(types[i + 1] & PathPointTypeBezier) || !(types[i + 2] & PathPointTypeBezier)) { -- 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.
http://bugs.winehq.org/show_bug.cgi?id=36876 --- Comment #1 from Vincent Povirk <madewokherd(a)gmail.com> --- Clearly, the code doesn't match the original intent, but I don't trust that the intent was correct. This needs tests. -- 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.
https://bugs.winehq.org/show_bug.cgi?id=36876 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download, source -- 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.
https://bugs.winehq.org/show_bug.cgi?id=36876 super_man(a)post.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |super_man(a)post.com --- Comment #2 from super_man(a)post.com --- I think this is fixed in source code http://source.winehq.org/git/wine.git/blob/253a587e471a653e1b5ed590280452f43... -- 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.
https://bugs.winehq.org/show_bug.cgi?id=36876 Bruno Jesus <00cpxxx(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |f1ed09fdd961cd3bde36e2cfd96 | |cadcdd56d1083 Status|UNCONFIRMED |RESOLVED Resolution|--- |FIXED --- Comment #3 from Bruno Jesus <00cpxxx(a)gmail.com> --- (In reply to super_man from comment #2)
I think this is fixed in source code
Indeed fixed. -- 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.
https://bugs.winehq.org/show_bug.cgi?id=36876 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #4 from Alexandre Julliard <julliard(a)winehq.org> --- Closing bugs fixed in 1.7.52. -- 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.
participants (1)
-
wine-bugs@winehq.org