From 454578b331a8e97cd34df26f753817a6c151a935 Mon Sep 17 00:00:00 2001 From: Nathan Schulte Date: Fri, 7 Apr 2017 09:59:24 -0500 Subject: [PATCH] add error check and log for xcb_create_window --- src/xcb.c | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/src/xcb.c b/src/xcb.c index 726d1e89..bdfb08bc 100644 --- a/src/xcb.c +++ b/src/xcb.c @@ -28,16 +28,21 @@ xcb_window_t create_window(xcb_connection_t *conn, Rect dims, visual = XCB_COPY_FROM_PARENT; } - xcb_create_window(conn, - depth, - result, /* the window id */ - root, /* parent == root */ - dims.x, dims.y, dims.width, dims.height, /* dimensions */ - 0, /* border = 0, we draw our own */ - window_class, - visual, - mask, - values); + xcb_void_cookie_t gc_cookie = xcb_create_window(conn, + depth, + result, /* the window id */ + root, /* parent == root */ + dims.x, dims.y, dims.width, dims.height, /* dimensions */ + 0, /* border = 0, we draw our own */ + window_class, + visual, + mask, + values); + + xcb_generic_error_t *error = xcb_request_check(conn, gc_cookie); + if (error != NULL) { + ELOG("Could not create window. Error code: %d.\n", error->error_code); + } /* Set the cursor */ if (xcursor_supported) { -- 2.39.2