Commit 5ade8233f4089c3f88f175be2fcedda9595fe842

Stefan Sperling 2019-07-12T12:33:38

eliminate potential got_fileindex_free(NULL) calls

diff --git a/lib/worktree.c b/lib/worktree.c
index 4a682d4..9948e88 100644
--- a/lib/worktree.c
+++ b/lib/worktree.c
@@ -1684,7 +1684,8 @@ done:
 		got_object_tree_close(tree);
 	if (commit)
 		got_object_commit_close(commit);
-	got_fileindex_free(fileindex);
+	if (fileindex)
+		got_fileindex_free(fileindex);
 	unlockerr = lock_worktree(worktree, LOCK_SH);
 	if (unlockerr && err == NULL)
 		err = unlockerr;
@@ -3975,7 +3976,8 @@ got_worktree_rebase_abort(struct got_worktree *worktree,
 done:
 	got_ref_close(resolved);
 	free(commit_id);
-	got_fileindex_free(fileindex);
+	if (fileindex)
+		got_fileindex_free(fileindex);
 	free(fileindex_path);
 	TAILQ_FOREACH(pe, &revertible_paths, entry)
 		free((char *)pe->path);