Allocation for xinerama_scr_regs used wrong size
Should be sizeof(region_t). Rebasing is hard :(
This commit is contained in:
parent
ff5a0cc0b7
commit
f1872c4033
|
@ -4854,7 +4854,7 @@ cxinerama_upd_scrs(session_t *ps) {
|
|||
xcb_xinerama_screen_info_t *scrs = xcb_xinerama_query_screens_screen_info(ps->xinerama_scrs);
|
||||
ps->xinerama_nscrs = xcb_xinerama_query_screens_screen_info_length(ps->xinerama_scrs);
|
||||
|
||||
ps->xinerama_scr_regs = allocchk(malloc(sizeof(xcb_xfixes_region_t *)
|
||||
ps->xinerama_scr_regs = allocchk(malloc(sizeof(region_t)
|
||||
* ps->xinerama_nscrs));
|
||||
for (int i = 0; i < ps->xinerama_nscrs; ++i) {
|
||||
const xcb_xinerama_screen_info_t * const s = &scrs[i];
|
||||
|
|
Loading…
Reference in New Issue