From 279595bd1af86db92b063ac8b70c7ef51c67363c Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Wed, 17 Sep 2008 23:58:38 -0700 Subject: [PATCH] libudev: fix "subsystem" value --- TODO | 1 + udev/lib/libudev-device.c | 2 +- udev/lib/libudev-util.c | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/TODO b/TODO index bbb585b00..325341864 100644 --- a/TODO +++ b/TODO @@ -12,3 +12,4 @@ These things will change in future udev versions: before next release: o replace list.h with gpl or later version + o increase ressize buffer diff --git a/udev/lib/libudev-device.c b/udev/lib/libudev-device.c index 782d66254..76ef298a3 100644 --- a/udev/lib/libudev-device.c +++ b/udev/lib/libudev-device.c @@ -397,7 +397,7 @@ const char *udev_device_get_subsystem(struct udev_device *udev_device) return udev_device->subsystem; /* read "subsytem" link */ - if (util_get_sys_subsystem(udev_device->udev, udev_device->syspath, subsystem, sizeof(subsystem)) == 0) { + if (util_get_sys_subsystem(udev_device->udev, udev_device->syspath, subsystem, sizeof(subsystem)) > 0) { udev_device->subsystem = strdup(subsystem); return udev_device->subsystem; } diff --git a/udev/lib/libudev-util.c b/udev/lib/libudev-util.c index 7053a2f82..6ec835e62 100644 --- a/udev/lib/libudev-util.c +++ b/udev/lib/libudev-util.c @@ -50,6 +50,7 @@ static ssize_t get_sys_link(struct udev *udev, const char *slink, const char *sy if (pos == NULL) return -1; pos = &pos[1]; + info(udev, "resolved link to: '%s'\n", pos); return util_strlcpy(subsystem, pos, size); } -- 2.30.2