render/egl: fix NULL dereference when using llvmpipe
Fixes: 6becc69ec9
("render/egl: fail to create wlr_egl on software renderer")
This commit is contained in:
parent
6becc69ec9
commit
a406f19479
|
@ -274,7 +274,7 @@ struct wlr_egl *wlr_egl_create(EGLenum platform, void *remote_display,
|
|||
|
||||
if (check_egl_ext(device_exts_str, "EGL_MESA_device_software")) {
|
||||
const char *allow_software = getenv("WLR_RENDERER_ALLOW_SOFTWARE");
|
||||
if (strcmp(allow_software, "1") == 0) {
|
||||
if (allow_software != NULL && strcmp(allow_software, "1") == 0) {
|
||||
wlr_log(WLR_INFO, "Using software rendering");
|
||||
} else {
|
||||
wlr_log(WLR_ERROR, "Software rendering detected, please use "
|
||||
|
|
Loading…
Reference in New Issue