From 60c3fedb7334cfc5c99bb0c729f13298c1cfce1c Mon Sep 17 00:00:00 2001 From: Orestis Floros Date: Sun, 13 Nov 2022 10:48:26 +0100 Subject: window_update_motif_hints: Do not assert that the property will always be there (#5281) Fixes #5280 --- src/window.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/window.c b/src/window.c index 36c44b37..eeff0741 100644 --- a/src/window.c +++ b/src/window.c @@ -459,7 +459,9 @@ static border_style_t border_style_from_motif_value(uint32_t value) { * */ bool window_update_motif_hints(i3Window *win, xcb_get_property_reply_t *prop, border_style_t *motif_border_style) { - assert(prop != NULL); + if (prop == NULL) { + return false; + } assert(motif_border_style != NULL); if (xcb_get_property_value_length(prop) == 0) { -- cgit v1.2.3-54-g00ecf