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@winehq.org Reporter: maksqwe1@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)) {
http://bugs.winehq.org/show_bug.cgi?id=36876
--- Comment #1 from Vincent Povirk madewokherd@gmail.com --- Clearly, the code doesn't match the original intent, but I don't trust that the intent was correct. This needs tests.
https://bugs.winehq.org/show_bug.cgi?id=36876
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download, source
https://bugs.winehq.org/show_bug.cgi?id=36876
super_man@post.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |super_man@post.com
--- Comment #2 from super_man@post.com --- I think this is fixed in source code
http://source.winehq.org/git/wine.git/blob/253a587e471a653e1b5ed590280452f43...
https://bugs.winehq.org/show_bug.cgi?id=36876
Bruno Jesus 00cpxxx@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |f1ed09fdd961cd3bde36e2cfd96 | |cadcdd56d1083 Status|UNCONFIRMED |RESOLVED Resolution|--- |FIXED
--- Comment #3 from Bruno Jesus 00cpxxx@gmail.com --- (In reply to super_man from comment #2)
I think this is fixed in source code
Indeed fixed.
https://bugs.winehq.org/show_bug.cgi?id=36876
Alexandre Julliard julliard@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #4 from Alexandre Julliard julliard@winehq.org --- Closing bugs fixed in 1.7.52.