Merge pull request #832 from turlando/fix/rootston-uninitialized-variable
Initialize rootston _surface
This commit is contained in:
commit
b6482bacf4
|
@ -578,7 +578,7 @@ static bool view_at(struct roots_view *view, double lx, double ly,
|
||||||
}
|
}
|
||||||
|
|
||||||
double _sx, _sy;
|
double _sx, _sy;
|
||||||
struct wlr_surface *_surface;
|
struct wlr_surface *_surface = NULL;
|
||||||
switch (view->type) {
|
switch (view->type) {
|
||||||
case ROOTS_XDG_SHELL_V6_VIEW:
|
case ROOTS_XDG_SHELL_V6_VIEW:
|
||||||
_surface = wlr_xdg_surface_v6_surface_at(view->xdg_surface_v6,
|
_surface = wlr_xdg_surface_v6_surface_at(view->xdg_surface_v6,
|
||||||
|
|
Loading…
Reference in New Issue