[cairo-commit] src/cairo-clip-boxes.c

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Fri Feb 1 01:33:32 UTC 2019


 src/cairo-clip-boxes.c |    1 -
 1 file changed, 1 deletion(-)

New commits:
commit cb871c6c692af68d8e0bf9e26472af45435f8a2c
Author: Bryce Harrington <bryce at bryceharrington.org>
Date:   Thu Jan 31 17:20:50 2019 -0800

    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

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;
 


More information about the cairo-commit mailing list