libpkgconf: path: ensure entire buffer is zeroed before calling realpath() on it (closes #150)

William Pitcock 2017-10-16 11:25:52 -05:00
parent 54906bf903
commit 95d62545d5
1 changed files with 4 additions and 1 deletions

View File

@ -89,7 +89,10 @@ pkgconf_path_add(const char *text, pkgconf_list_t *dirlist, bool filter)
if (S_ISLNK(st.st_mode))
{
char linkdest[PKGCONF_BUFSIZE];
ssize_t len = readlink(text, linkdest, sizeof(linkdest));
ssize_t len;
memset(linkdest, '\0', sizeof linkdest);
len = readlink(text, linkdest, sizeof linkdest);
if (len != -1 && (size_t)len < sizeof(linkdest) &&
stat(linkdest, &st) == -1)