From fe9af393b49908a88e80252f766774f8e0ea0503 Mon Sep 17 00:00:00 2001 From: SnowNF Date: Thu, 21 Mar 2024 16:46:44 +0800 Subject: [PATCH] rcxml: add missing check for calibrationMatrix --- src/config/rcxml.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/config/rcxml.c b/src/config/rcxml.c index 58ebc872..994498c3 100644 --- a/src/config/rcxml.c +++ b/src/config/rcxml.c @@ -617,7 +617,8 @@ fill_libinput_category(char *nodename, char *content) current_libinput_category->have_calibration_matrix = true; float *mat = current_libinput_category->calibration_matrix; gchar **elements = g_strsplit(content, " ", -1); - for (guint i = 0; elements[i]; ++i) { + guint i = 0; + for (; elements[i]; ++i) { char *end_str = NULL; mat[i] = strtof(elements[i], &end_str); if (errno == ERANGE || *end_str != '\0' || i == 6 || *elements[i] == '\0') { @@ -629,6 +630,11 @@ fill_libinput_category(char *nodename, char *content) break; } } + if (i != 6 && current_libinput_category->have_calibration_matrix) { + wlr_log(WLR_ERROR, "wrong number of calibration matrix elements," + " expected 6, got %d", i); + current_libinput_category->have_calibration_matrix = false; + } g_strfreev(elements); } }