gsk: Plug a memory leak in mask node fallback

We were forgetting to free the mask pattern.
Found by asan.
This commit is contained in:
Matthias Clasen 2023-06-27 21:54:15 -04:00
parent ef0d6c7290
commit 0ae541671d

View File

@ -5703,6 +5703,8 @@ gsk_mask_node_draw (GskRenderNode *node,
cairo_clip (cr);
cairo_mask (cr, mask_pattern);
cairo_pattern_destroy (mask_pattern);
}
static void