aboutsummaryrefslogtreecommitdiff
path: root/backend/drm/drm.c
diff options
context:
space:
mode:
authorVersus Void <versusvoid@gmail.com>2017-10-22 10:45:23 +0000
committerVersus Void <versusvoid@gmail.com>2017-10-22 10:54:09 +0000
commit2ab080e79af7c529a61adc11a7edd7c13873893b (patch)
tree062a65b41f3b912356813ae8204ca418650fb2df /backend/drm/drm.c
parente8f92838943920addcb0f80894f4e152eafa5ae4 (diff)
Fix index computation in DRM output scan and CRTC match
Diffstat (limited to 'backend/drm/drm.c')
-rw-r--r--backend/drm/drm.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/backend/drm/drm.c b/backend/drm/drm.c
index 31255a7c..51a5f636 100644
--- a/backend/drm/drm.c
+++ b/backend/drm/drm.c
@@ -319,9 +319,10 @@ static void realloc_crtcs(struct wlr_drm_backend *drm, struct wlr_drm_connector
memset(possible_crtc, 0, sizeof(possible_crtc));
- ssize_t index = -1, i = 0;
+ ssize_t index = -1, i = -1;
struct wlr_drm_connector *c;
wl_list_for_each(c, &drm->outputs, link) {
+ i++;
if (c == conn) {
index = i;
}
@@ -332,7 +333,6 @@ static void realloc_crtcs(struct wlr_drm_backend *drm, struct wlr_drm_connector
possible_crtc[i] = c->possible_crtc;
crtc[c->crtc - drm->crtcs] = i;
- i++;
}
assert(index != -1);
@@ -686,7 +686,8 @@ void wlr_drm_scan_connectors(struct wlr_drm_backend *drm) {
}
size_t seen_len = wl_list_length(&drm->outputs);
- // +1 so it can never be 0
+ // +1 so length can never be 0, which is undefined behaviour.
+ // Last element isn't used.
bool seen[seen_len + 1];
memset(seen, 0, sizeof(seen));
@@ -697,7 +698,7 @@ void wlr_drm_scan_connectors(struct wlr_drm_backend *drm) {
wlr_log_errno(L_ERROR, "Failed to get DRM connector");
continue;
}
- int index = 0;
+ int index = -1;
struct wlr_drm_connector *c, *wlr_conn = NULL;
wl_list_for_each(c, &drm->outputs, link) {
index++;
@@ -794,13 +795,12 @@ void wlr_drm_scan_connectors(struct wlr_drm_backend *drm) {
drmModeFreeResources(res);
struct wlr_drm_connector *conn, *tmp_conn;
- size_t index = seen_len - 1;
+ size_t index = wl_list_length(&drm->outputs);
wl_list_for_each_safe(conn, tmp_conn, &drm->outputs, link) {
- if (seen[index]) {
- index--;
+ index--;
+ if (index >= seen_len || seen[index]) {
continue;
}
- index--;
wlr_log(L_INFO, "'%s' disappeared", conn->output.name);
wlr_drm_connector_cleanup(conn);