mirror of
https://salsa.debian.org/xorg-team/lib/pixman
synced 2026-08-23 20:28:54 +00:00
Plug another leak in alphamap test
Even after commit e46be417ce alphamap
test is still leaking the alphamap pixmap, leading to mmap() failures
on cygwin
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
This commit is contained in:
parent
1c23142efa
commit
00fdb3d8e8
@ -82,6 +82,7 @@ create_image (pixman_format_code_t format, pixman_format_code_t alpha_format,
|
||||
|
||||
pixman_image_set_alpha_map (image, alpha,
|
||||
alpha_origin_x, alpha_origin_y);
|
||||
pixman_image_unref (alpha);
|
||||
}
|
||||
|
||||
return image;
|
||||
@ -217,6 +218,10 @@ run_test (int s, int d, int sa, int da, int soff, int doff)
|
||||
}
|
||||
}
|
||||
|
||||
pixman_image_set_alpha_map (src, NULL, 0, 0);
|
||||
pixman_image_set_alpha_map (dst, NULL, 0, 0);
|
||||
pixman_image_set_alpha_map (orig_dst, NULL, 0, 0);
|
||||
|
||||
pixman_image_unref (src);
|
||||
pixman_image_unref (dst);
|
||||
pixman_image_unref (orig_dst);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user