window.c: Use xmalloc for frame_create()

This commit is contained in:
Kristian Høgsberg 2013-07-25 16:25:15 -07:00
parent 9a6c48d0fd
commit 8eeb30b9d1
1 changed files with 1 additions and 1 deletions

View File

@ -2603,7 +2603,7 @@ frame_create(struct window *window, void *data)
{
struct frame *frame;
frame = malloc(sizeof *frame);
frame = xmalloc(sizeof *frame);
memset(frame, 0, sizeof *frame);
frame->widget = window_add_widget(window, frame);