summaryrefslogtreecommitdiff
path: root/src/status.c
diff options
context:
space:
mode:
authoryorah <yoram.harmelin@gmail.com>2013-07-03 17:07:20 +0200
committeryorah <yoram.harmelin@gmail.com>2013-07-03 17:22:12 +0200
commit9b6075b25fb6fef570dd29c2b797db8bc34cf0b1 (patch)
tree18f3b3e105345b0dcc9c9a99447a24c6a3af3a4e /src/status.c
parent6bb7bff274be004768ccedf76643383494e2a9dc (diff)
downloadlibgit2-9b6075b25fb6fef570dd29c2b797db8bc34cf0b1.tar.gz
Fix segfault in git_status_foreach_ext()
Add tests for the `GIT_STATUS_SHOW_XXX` flags.
Diffstat (limited to 'src/status.c')
-rw-r--r--src/status.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/status.c b/src/status.c
index e520c1017..7da94edc1 100644
--- a/src/status.c
+++ b/src/status.c
@@ -257,6 +257,7 @@ int git_status_list_new(
opts ? opts->show : GIT_STATUS_SHOW_INDEX_AND_WORKDIR;
int error = 0;
unsigned int flags = opts ? opts->flags : GIT_STATUS_OPT_DEFAULTS;
+ git_diff_list *head2idx = NULL;
assert(show <= GIT_STATUS_SHOW_INDEX_THEN_WORKDIR);
@@ -307,8 +308,10 @@ int git_status_list_new(
&status->head2idx, repo, head, NULL, &diffopt)) < 0)
goto done;
+ head2idx = status->head2idx;
+
if ((flags & GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX) != 0 &&
- (error = git_diff_find_similar(status->head2idx, NULL)) < 0)
+ (error = git_diff_find_similar(head2idx, NULL)) < 0)
goto done;
}
@@ -324,15 +327,14 @@ int git_status_list_new(
if (show == GIT_STATUS_SHOW_INDEX_THEN_WORKDIR) {
if ((error = git_diff__paired_foreach(
- status->head2idx, NULL, status_collect, status)) < 0)
+ head2idx, NULL, status_collect, status)) < 0)
goto done;
- git_diff_list_free(status->head2idx);
- status->head2idx = NULL;
+ head2idx = NULL;
}
if ((error = git_diff__paired_foreach(
- status->head2idx, status->idx2wd, status_collect, status)) < 0)
+ head2idx, status->idx2wd, status_collect, status)) < 0)
goto done;
if (flags & GIT_STATUS_OPT_SORT_CASE_SENSITIVELY)