Skip assign when sub_x or sub_y is NULL in wlr_surface_surface_at
This commit is contained in:
parent
447835afc1
commit
aa9ea95e1f
|
@ -1016,8 +1016,12 @@ struct wlr_surface *wlr_surface_surface_at(struct wlr_surface *surface,
|
|||
}
|
||||
|
||||
if (wlr_surface_point_accepts_input(surface, sx, sy)) {
|
||||
*sub_x = sx;
|
||||
*sub_y = sy;
|
||||
if (sub_x) {
|
||||
*sub_x = sx;
|
||||
}
|
||||
if (sub_y) {
|
||||
*sub_y = sy;
|
||||
}
|
||||
return surface;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue