From 183ac1889f369743a86a8a2ff6b61486acda614e Mon Sep 17 00:00:00 2001 From: Maks Naumov Date: Tue, 19 Aug 2014 14:59:14 -0700 Subject: [PATCH] Fix width and height args for _cairo_xcb_connection_copy_area() Found via static analysis. Signed-off-by: Maks Naumov Reviewed-by: Uli Schlachter --- src/cairo-xcb-surface-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cairo-xcb-surface-core.c b/src/cairo-xcb-surface-core.c index 545fd2840..9c0c0a095 100644 --- a/src/cairo-xcb-surface-core.c +++ b/src/cairo-xcb-surface-core.c @@ -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); } } }