render/egl: Release devices before return

This commit is contained in:
YaoBing Xiao 2024-08-19 23:07:35 +08:00 committed by lychee-yycy
parent 5df2b34d2b
commit 3048fb3fc6

View File

@ -476,6 +476,7 @@ static EGLDeviceEXT get_egl_device_from_drm_fd(struct wlr_egl *egl,
if (!egl->procs.eglQueryDevicesEXT(nb_devices, devices, &nb_devices)) {
wlr_log(WLR_ERROR, "Failed to query EGL devices");
free(devices);
return EGL_NO_DEVICE_EXT;
}
@ -483,6 +484,7 @@ static EGLDeviceEXT get_egl_device_from_drm_fd(struct wlr_egl *egl,
int ret = drmGetDevice(drm_fd, &device);
if (ret < 0) {
wlr_log(WLR_ERROR, "Failed to get DRM device: %s", strerror(-ret));
free(devices);
return EGL_NO_DEVICE_EXT;
}