From 126d3570843be7dc68c779435e0148fc36eb26cb Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 4 Sep 2014 20:10:24 +0200 Subject: [PATCH] installer: Fix off-by-one error in number search --- src/installer/hw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer/hw.c b/src/installer/hw.c index 6d3389a6bb..ba7fda267a 100644 --- a/src/installer/hw.c +++ b/src/installer/hw.c @@ -364,7 +364,7 @@ static int hw_device_has_p_suffix(const struct hw_destination* dest) { // Devices with a number at the end have the p suffix, too. // e.g. mmcblk0, cciss0 - unsigned int last_char = strlen(dest->path); + unsigned int last_char = strlen(dest->path) - 1; if ((dest->path[last_char] >= '0') && (dest->path[last_char] <= '9')) return 1; -- 2.39.2