1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-30 13:01:23 +03:00

misc: Use a fixed buffer for getenv().

This commit is contained in:
Andreas Schneider
2012-10-08 22:38:20 +02:00
parent de34a64895
commit e04dc45f20

View File

@@ -215,7 +215,13 @@ char *ssh_get_user_home_dir(void) {
rc = getpwuid_r(getuid(), &pwd, buf, NSS_BUFLEN_PASSWD, &pwdbuf);
if (rc != 0) {
szPath = getenv("HOME");
return szPath ? strdup(szPath) : NULL;
if (szPath == NULL) {
return NULL;
}
memset(buf, 0, sizeof(buf));
snprintf(buf, sizeof(buf), "%s", getenv("HOME"));
return strdup(buf);
}
szPath = strdup(pwd.pw_dir);