summaryrefslogtreecommitdiff
path: root/src/cairo-debug.c
diff options
context:
space:
mode:
authorUli Schlachter <psychon@znc.in>2018-01-13 11:34:19 +0100
committerUli Schlachter <psychon@znc.in>2018-03-15 21:43:03 +0100
commit1ed124ace201946177eab962d3b07bb2fedf9026 (patch)
treee3be7660cb24f7088f64071122d8864de9ef0120 /src/cairo-debug.c
parent5454b85d4bf2f7bea454c940d90255a15517fa3b (diff)
downloadcairo-1ed124ace201946177eab962d3b07bb2fedf9026.tar.gz
Fix a 'memory leak' in the image compositor
There is a global pixman_glyph_cache_t instance that is initialized on first use and shows up in valgrind output as a relatively large leak (I think it was about 200 KiB). The reason for this is that this cache is not freed by cairo_debug_reset_static_data(). This commit wires up freeing the cache to cairo_debug_reset_static_data(). This cache was introduced in commit 615205cf0729 from 2012. Signed-off-by: Uli Schlachter <psychon@znc.in>
Diffstat (limited to 'src/cairo-debug.c')
-rw-r--r--src/cairo-debug.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cairo-debug.c b/src/cairo-debug.c
index 10933a673..6005060d4 100644
--- a/src/cairo-debug.c
+++ b/src/cairo-debug.c
@@ -86,6 +86,8 @@ cairo_debug_reset_static_data (void)
_cairo_image_reset_static_data ();
+ _cairo_image_compositor_reset_static_data ();
+
#if CAIRO_HAS_DRM_SURFACE
_cairo_drm_device_reset_static_data ();
#endif