window_update_motif_hints: Do not assert that the property will always be there (#5281)

Fixes #5280
This commit is contained in:
Orestis Floros 2022-11-13 10:48:26 +01:00 committed by GitHub
parent 96614a2f32
commit 60c3fedb73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) {