From cb871c6c692af68d8e0bf9e26472af45435f8a2c Mon Sep 17 00:00:00 2001 From: Bryce Harrington Date: Thu, 31 Jan 2019 17:20:50 -0800 Subject: [PATCH] clip-boxes: Drop too-early return The indentation of this line suggests it is a typo. In any case it causes the function to unconditionally return immediately, thereby shortcircuiting it entirely, which does not appear to be the intended behavior. Fixes: https://gitlab.com/cairo/cairo/issues/2 --- src/cairo-clip-boxes.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/cairo-clip-boxes.c b/src/cairo-clip-boxes.c index aaddeb7f7..d6e29fa3a 100644 --- a/src/cairo-clip-boxes.c +++ b/src/cairo-clip-boxes.c @@ -524,7 +524,6 @@ _cairo_clip_reduce_to_boxes (cairo_clip_t *clip) cairo_clip_path_t *clip_path; cairo_status_t status; - return clip; if (clip->path == NULL) return clip;