From 2f5df30ef51b2429144d22810ce69ee8b0d49451 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 4 Oct 2020 13:32:29 +0200 Subject: [PATCH] =?UTF-8?q?sixel:=20verify-no-overlap:=20initialize=20?= =?UTF-8?q?=E2=80=98intersection=E2=80=99=20pixman=20region?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sixel.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sixel.c b/sixel.c index 0d69e658..bea90414 100644 --- a/sixel.c +++ b/sixel.c @@ -188,6 +188,7 @@ verify_no_overlap(const struct terminal *term) six2->pos.row, six2->cols, six2->rows); pixman_region32_t intersection; + pixman_region32_init(&intersection); pixman_region32_intersect(&intersection, &rect1, &rect2); assert(!pixman_region32_not_empty(&intersection));