rootston exit: fix drm destroy

wlr_drm_connector were being freed without removing them
from the drm->outputs list, segfaulting on destroy
This commit is contained in:
Dominique Martinet 2017-11-01 19:34:17 +01:00
parent 1d0973f6c8
commit f451ea3639
2 changed files with 4 additions and 2 deletions

View file

@ -29,8 +29,8 @@ static void wlr_drm_backend_destroy(struct wlr_backend *backend) {
wlr_drm_restore_outputs(drm);
struct wlr_drm_connector *conn;
wl_list_for_each(conn, &drm->outputs, link) {
struct wlr_drm_connector *conn, *next;
wl_list_for_each_safe(conn, next, &drm->outputs, link) {
wlr_output_destroy(&conn->output);
}