From d049391916e4f418d6057bca9fcbd3d6e35cd15a Mon Sep 17 00:00:00 2001 From: Bert Münnich Date: Fri, 7 Feb 2014 22:57:58 +0100 Subject: Check for background image allocation failure --- image.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'image.c') diff --git a/image.c b/image.c index 62b3c08..3eedf52 100644 --- a/image.c +++ b/image.c @@ -492,7 +492,8 @@ void img_render(img_t *img) imlib_context_set_drawable(win->pm); if (imlib_image_has_alpha()) { - bg = imlib_create_image(dw, dh); + if ((bg = imlib_create_image(dw, dh)) == NULL) + die("could not allocate memory"); imlib_context_set_image(bg); imlib_image_set_has_alpha(0); -- cgit v1.2.3