From bae79ca741cffa611bcfd8ec5405868781326720 Mon Sep 17 00:00:00 2001 From: "U. Artie Eoff" Date: Wed, 15 Jan 2014 13:38:51 -0800 Subject: [PATCH] clients/window: fail if NULL returned from frame_create Signed-off-by: U. Artie Eoff --- clients/window.c | 1 + 1 file changed, 1 insertion(+) diff --git a/clients/window.c b/clients/window.c index dddfc67..d8d79d0 100644 --- a/clients/window.c +++ b/clients/window.c @@ -4594,6 +4594,7 @@ window_show_menu(struct display *display, window_set_buffer_transform (menu->window, window_get_buffer_transform (parent)); menu->frame = frame_create(window->display->theme, 0, 0, FRAME_BUTTON_NONE, NULL); + fail_on_null(menu->frame); menu->entries = entries; menu->count = count; menu->release_count = 0; -- 2.7.4