1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 22:06:38 +02:00

api: fix string_expand_home SIGSEGV when HOME environment variable unset

This commit is contained in:
Simmo Saan
2016-10-20 23:24:50 +03:00
parent b51beb6766
commit bb22f2486b
+2
View File
@@ -503,6 +503,8 @@ string_expand_home (const char *path)
}
ptr_home = getenv ("HOME");
if (!ptr_home)
return NULL;
length = strlen (ptr_home) + strlen (path + 1) + 1;
str = malloc (length);