backend: avoid adding NULL backend in attempt_backend_by_name()

This commit is contained in:
Simon Ser 2023-02-21 12:52:20 +01:00
parent 2849712356
commit 7303e13808
1 changed files with 3 additions and 0 deletions

View File

@ -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);
}