mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-22 07:02:28 +00:00
backend: avoid adding NULL backend in attempt_backend_by_name()
This commit is contained in:
parent
2849712356
commit
7303e13808
@ -277,6 +277,9 @@ static bool attempt_backend_by_name(struct wl_display *display,
|
||||
wlr_log(WLR_ERROR, "unrecognized backend '%s'", name);
|
||||
return false;
|
||||
}
|
||||
if (backend == NULL) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return wlr_multi_backend_add(multi, backend);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user