Skip to content

Commit

Permalink
Fix width and height args for _cairo_xcb_connection_copy_area()
Browse files Browse the repository at this point in the history
Found via static analysis.

Signed-off-by: Maks Naumov <maksqwe1@ukr.net>
Reviewed-by:  Uli Schlachter <psychon@znc.in>
  • Loading branch information
Maks Naumov authored and Bryce Harrington committed Aug 21, 2014
1 parent eab218d commit 183ac18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cairo-xcb-surface-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ _cairo_xcb_surface_core_copy_boxes (cairo_xcb_surface_t *dst,
src->x0 + x1,
src->y0 + y1,
x1, y1,
x2 - x2, y2 - x2);
x2 - x1, y2 - y1);
}
}
}
Expand Down

0 comments on commit 183ac18

Please sign in to comment.