summaryrefslogtreecommitdiff
path: root/src/checkout.c
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2016-08-30 08:22:17 +0200
committerPatrick Steinhardt <ps@pks.im>2016-08-30 08:22:49 +0200
commita08e88259fe7ef3d7514a4774acd6eec5a6a2ca7 (patch)
treef98363732485f5a3abe33debef803880f2762b53 /src/checkout.c
parentdfd7957696eed03733d8edb17e132153c7dc7a4e (diff)
parent88cfe61497dbf1f568e1c606f8b1c791602c71f4 (diff)
downloadlibgit2-a08e88259fe7ef3d7514a4774acd6eec5a6a2ca7.tar.gz
Merge pull request #3907 from steffhip/git_checkout_tree-fix
Diffstat (limited to 'src/checkout.c')
-rw-r--r--src/checkout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/checkout.c b/src/checkout.c
index 72ee8b624..f11102c8b 100644
--- a/src/checkout.c
+++ b/src/checkout.c
@@ -2722,7 +2722,7 @@ int git_checkout_tree(
if ((error = git_repository_index(&index, repo)) < 0)
return error;
- if ((opts->checkout_strategy & GIT_CHECKOUT_DISABLE_PATHSPEC_MATCH)) {
+ if (opts && (opts->checkout_strategy & GIT_CHECKOUT_DISABLE_PATHSPEC_MATCH)) {
iter_opts.pathlist.count = opts->paths.count;
iter_opts.pathlist.strings = opts->paths.strings;
}