mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
xwayland/xwm: Avoid zero-size allocaiton
Zero-sized allocations have glibc-specific behavior, so avoid those.
This commit is contained in:
parent
0cb091f1a2
commit
837060f894
1 changed files with 11 additions and 8 deletions
|
@ -290,7 +290,9 @@ static void xwm_set_net_client_list(struct wlr_xwm *xwm) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
xcb_window_t *windows = malloc(sizeof(xcb_window_t) * mapped_surfaces);
|
xcb_window_t *windows = NULL;
|
||||||
|
if (mapped_surfaces > 0) {
|
||||||
|
xcb_window_t *windows = malloc(sizeof(*windows) * mapped_surfaces);
|
||||||
if (!windows) {
|
if (!windows) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -301,6 +303,7 @@ static void xwm_set_net_client_list(struct wlr_xwm *xwm) {
|
||||||
windows[index++] = surface->window_id;
|
windows[index++] = surface->window_id;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
xcb_change_property(xwm->xcb_conn, XCB_PROP_MODE_REPLACE,
|
xcb_change_property(xwm->xcb_conn, XCB_PROP_MODE_REPLACE,
|
||||||
xwm->screen->root, xwm->atoms[NET_CLIENT_LIST],
|
xwm->screen->root, xwm->atoms[NET_CLIENT_LIST],
|
||||||
|
|
Loading…
Reference in a new issue