Commit 113b995f by Edward Thomson

process: don't deref a NULL opts

`opts` may be null; check before dereferencing.
parent ecc2ffda
...@@ -121,7 +121,7 @@ int git_process_new( ...@@ -121,7 +121,7 @@ int git_process_new(
GIT_ERROR_CHECK_ALLOC(process); GIT_ERROR_CHECK_ALLOC(process);
if (git_strlist_copy_with_null(&process->args, args, args_len) < 0 || if (git_strlist_copy_with_null(&process->args, args, args_len) < 0 ||
merge_env(&process->env, env, env_len, opts->exclude_env) < 0) { merge_env(&process->env, env, env_len, opts ? opts->exclude_env : false) < 0) {
git_process_free(process); git_process_free(process);
return -1; return -1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment