From: Peter Hutterer Date: Sun, 7 Jul 2019 23:53:49 +0000 (+1000) Subject: test: fix an always-true check for udev properties X-Git-Tag: 1.13.901~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=734ada5e94f8bdf8a1f45ec092c741a35d94bf95;p=platform%2Fupstream%2Flibinput.git test: fix an always-true check for udev properties Found by coverity Signed-off-by: Peter Hutterer --- diff --git a/test/litest.c b/test/litest.c index a9ec9a9..76da2c5 100644 --- a/test/litest.c +++ b/test/litest.c @@ -664,7 +664,7 @@ litest_init_device_udev_rules(struct litest_test_device *dev, FILE *f) const struct key_value_str *kv; static int count; - if (!dev->udev_properties) + if (dev->udev_properties[0].key == NULL) return; count++;