mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-15 09:44:04 +00:00
Fix hddtemp with disabled drives.
Some drives are unable to return their temperature when in standby mode. If there is more than one drive installed then other drives may not be able to get parsed. This patch will skip over the unparsable output for the current drive and let others get parsed. Signed-off-by: Brenden Matthews <brenden@diddyinc.com>
This commit is contained in:
parent
e01a157c62
commit
c2e8734cb3
@ -171,6 +171,7 @@ static int read_hdd_val(const char *line, char **dev, short *val, char *unit,
|
||||
}
|
||||
line_s = *saveptr;
|
||||
|
||||
again:
|
||||
/* read the device */
|
||||
*dev = ++p;
|
||||
if (!(p = strchr(p, line_s[0])))
|
||||
@ -186,8 +187,13 @@ static int read_hdd_val(const char *line, char **dev, short *val, char *unit,
|
||||
*(p++) = '\0';
|
||||
*unit = *(p++);
|
||||
*val = strtol(cval, &endptr, 10);
|
||||
if (*endptr)
|
||||
goto out_fail;
|
||||
if (*endptr) {
|
||||
if (!(p = strchr(p, line_s[0])))
|
||||
goto out_fail;
|
||||
|
||||
p++;
|
||||
goto again;
|
||||
}
|
||||
|
||||
/* preset p for next call */
|
||||
p++;
|
||||
|
Loading…
Reference in New Issue
Block a user