mirror of
https://github.com/weechat/weechat.git
synced 2026-06-12 14:14:48 +02:00
Merge pull request #827 from sim642/string_expand_home-sigsegv
api: fix string_expand_home SIGSEGV when HOME environment variable unset
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user