summaryrefslogtreecommitdiff
path: root/plugins/common
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-01-21 19:36:58 +0100
committerLuke from DC <[email protected]>2021-02-01 03:45:51 +0000
commit5c5bc168873c840f64545527cd245b2e87ada488 (patch)
treead0e563b9cf52e45b53f9206385c7cd26f0ff9df /plugins/common
parent2b43bc1c44e26d1ba9c6e25968c6284d448638f4 (diff)
downloadmate-settings-daemon-5c5bc168873c840f64545527cd245b2e87ada488.tar.bz2
mate-settings-daemon-5c5bc168873c840f64545527cd245b2e87ada488.tar.xz
cppcheck warning: known condition is always true
Diffstat (limited to 'plugins/common')
-rw-r--r--plugins/common/msd-input-helper.c4
-rw-r--r--plugins/common/msd-keygrab.c3
2 files changed, 3 insertions, 4 deletions
diff --git a/plugins/common/msd-input-helper.c b/plugins/common/msd-input-helper.c
index 5434014..641c51c 100644
--- a/plugins/common/msd-input-helper.c
+++ b/plugins/common/msd-input-helper.c
@@ -120,8 +120,8 @@ touchpad_is_present (void)
break;
}
}
- if (device_info != NULL)
- XFreeDeviceList (device_info);
+
+ XFreeDeviceList (device_info);
return retval;
}
diff --git a/plugins/common/msd-keygrab.c b/plugins/common/msd-keygrab.c
index a0f4105..d112ae9 100644
--- a/plugins/common/msd-keygrab.c
+++ b/plugins/common/msd-keygrab.c
@@ -240,7 +240,6 @@ match_key (Key *key, XEvent *event)
}
/* The key we passed doesn't have a keysym, so try with just the keycode */
- return (key != NULL
- && key->state == (event->xkey.state & msd_used_mods)
+ return (key->state == (event->xkey.state & msd_used_mods)
&& key_uses_keycode (key, event->xkey.keycode));
}