diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-03-18 22:00:15 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-03-18 22:00:15 +0100 |
commit | 6f0166771aadeb069b8952255414d67b643db1bf (patch) | |
tree | 2494ed3a3a79b40e2a31d5892b33504505425bd6 /config.c | |
parent | Merge branch 'nd/diff-quiet-stat-dirty' into maint (diff) | |
parent | handle_path_include: don't look at NULL value (diff) | |
download | git-6f0166771aadeb069b8952255414d67b643db1bf.tar.xz git-6f0166771aadeb069b8952255414d67b643db1bf.zip |
Merge branch 'jk/config-path-include-fix' into maint
include.path variable (or any variable that expects a path that can
use ~username expansion) in the configuration file is not a boolean,
but the code failed to check it.
* jk/config-path-include-fix:
handle_path_include: don't look at NULL value
expand_user_path: do not look at NULL path
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -84,8 +84,12 @@ static int handle_path_include(const char *path, struct config_include_data *inc { int ret = 0; struct strbuf buf = STRBUF_INIT; - char *expanded = expand_user_path(path); + char *expanded; + if (!path) + return config_error_nonbool("include.path"); + + expanded = expand_user_path(path); if (!expanded) return error("Could not expand include path '%s'", path); path = expanded; |