gdiplus: Allow widening a "closed" line segment.

Signed-off-by: Vincent Povirk <vincent@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Vincent Povirk 2016-10-13 16:23:13 -05:00 committed by Alexandre Julliard
parent 1f00ba5b5d
commit 96eac4876c
1 changed files with 1 additions and 1 deletions

View File

@ -1888,7 +1888,7 @@ static void widen_closed_figure(GpPath *path, GpPen *pen, int start, int end,
int i;
path_list_node_t *prev_point;
if (end <= start+1)
if (end <= start)
return;
/* left outline */