1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-30 05:59:07 +00:00

Fix "off-by-one" bug in hddtemp found by valgrind

This commit is contained in:
Pavel Labath 2010-01-15 23:41:04 +01:00
parent 002685c0ce
commit 3a23eb5f6c

View File

@ -133,7 +133,7 @@ static char *fetch_hddtemp_output(void)
close(sockfd);
}
if (!rp) {
NORM_ERR("could not connect to mpd host");
NORM_ERR("could not connect to hddtemp host");
goto GET_OUT;
}
@ -175,6 +175,8 @@ static int read_hdd_val(const char *line, char **dev, short *val, char *unit,
line_s = *saveptr;
again:
if(!*p)
goto out_fail;
/* read the device */
*dev = ++p;
if (!(p = strchr(p, line_s[0])))