summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-config-fix-NULL-value-detection-for-ID_INPUT-being-u.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-config-fix-NULL-value-detection-for-ID_INPUT-being-u.patch')
-rw-r--r--meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-config-fix-NULL-value-detection-for-ID_INPUT-being-u.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-config-fix-NULL-value-detection-for-ID_INPUT-being-u.patch b/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-config-fix-NULL-value-detection-for-ID_INPUT-being-u.patch
deleted file mode 100644
index 964d5dd4cf..0000000000
--- a/meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-config-fix-NULL-value-detection-for-ID_INPUT-being-u.patch
+++ /dev/null
@@ -1,40 +0,0 @@
1From a309323328d9d6e0bf5d9ea1d75920e53b9beef3 Mon Sep 17 00:00:00 2001
2From: Peter Hutterer <peter.hutterer@who-t.net>
3Date: Fri, 5 Jan 2018 11:58:42 +1000
4Subject: [PATCH] config: fix NULL value detection for ID_INPUT being unset
5
6Erroneous condition caused us to keep going with all devices that didn't have
7ID_INPUT set.
8
9Fixes: 5aad81445c8c3d6
10Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=104382
11Reviewed-by: Adam Jackson <ajax@redhat.com>
12Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
13
14Upstream-status: Backport
15https://patchwork.freedesktop.org/patch/196090/
16Affects: < 1.20.0
17[Yocto # 12899]
18
19Signed-off-by: Armin Kuster <akuser808@gmail.com>
20
21---
22 config/udev.c | 2 +-
23 1 file changed, 1 insertion(+), 1 deletion(-)
24
25diff --git a/config/udev.c b/config/udev.c
26index e198e8609..3a73189e2 100644
27--- a/config/udev.c
28+++ b/config/udev.c
29@@ -135,7 +135,7 @@ device_added(struct udev_device *udev_device)
30 #endif
31
32 value = udev_device_get_property_value(udev_device, "ID_INPUT");
33- if (value && !strcmp(value, "0")) {
34+ if (!value || !strcmp(value, "0")) {
35 LogMessageVerb(X_INFO, 10,
36 "config/udev: ignoring device %s without "
37 "property ID_INPUT set\n", path);
38--
392.17.1
40