From 29a8b4e970379ca04a7db8e63c71bb34c0e349ce Mon Sep 17 00:00:00 2001 From: Maks Naumov Date: Wed, 20 Aug 2014 09:52:45 -0700 Subject: [PATCH] Fix _cairo_mesh_pattern_equal() when cairo_mesh_patch_t structs are different Signed-off-by: Maks Naumov Reviewed-by: Bryce Harrington --- src/cairo-pattern.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cairo-pattern.c b/src/cairo-pattern.c index 6905e15a3..e6fdae6a6 100644 --- a/src/cairo-pattern.c +++ b/src/cairo-pattern.c @@ -3911,7 +3911,7 @@ _cairo_mesh_pattern_equal (const cairo_mesh_pattern_t *a, for (i = 0; i < num_patches_a; i++) { patch_a = _cairo_array_index_const (&a->patches, i); - patch_b = _cairo_array_index_const (&a->patches, i); + patch_b = _cairo_array_index_const (&b->patches, i); if (memcmp (patch_a, patch_b, sizeof(cairo_mesh_patch_t)) != 0) return FALSE; }