summaryrefslogtreecommitdiff
path: root/test/fallback-resolution.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2009-02-13 13:09:32 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2009-02-13 13:26:52 +0000
commit187e3473512e40fa1d046783e797ec3a198b09b2 (patch)
treebb50d119fa1107cbd27978917d51161b47654239 /test/fallback-resolution.c
parent005436758c5679f76cc462841678fb93d6c7e0ac (diff)
downloadcairo-187e3473512e40fa1d046783e797ec3a198b09b2.tar.gz
[test] Free ref_name in fallback-resolution.
Trivial leak of a few thousand bytes.
Diffstat (limited to 'test/fallback-resolution.c')
-rw-r--r--test/fallback-resolution.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/fallback-resolution.c b/test/fallback-resolution.c
index 7b1d313bf..eab79959b 100644
--- a/test/fallback-resolution.c
+++ b/test/fallback-resolution.c
@@ -216,6 +216,7 @@ check_result (cairo_test_context_t *ctx,
cairo_surface_destroy (test_image);
free (png_name);
free (diff_name);
+ free (ref_name);
return FALSE;
}
@@ -247,6 +248,7 @@ check_result (cairo_test_context_t *ctx,
cairo_surface_destroy (diff_image);
free (png_name);
free (diff_name);
+ free (ref_name);
return ret;
}