Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
8a3934e4
Commit
8a3934e4
authored
Mar 11, 2015
by
Pierre-Olivier Latour
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid retaining / releasing the index more than necessary when GIT_DIFF_UPDATE_INDEX is enabled
parent
15f58174
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
+1
-2
src/diff.c
+1
-2
No files found.
src/diff.c
View file @
8a3934e4
...
...
@@ -620,10 +620,9 @@ int git_diff__oid_for_entry(
if
(
!
error
&&
update_match
&&
git_oid_equal
(
out
,
update_match
))
{
git_index
*
idx
;
if
(
!
(
error
=
git_repository_index
(
&
idx
,
diff
->
repo
)))
{
if
(
!
(
error
=
git_repository_index
__weakptr
(
&
idx
,
diff
->
repo
)))
{
memcpy
(
&
entry
.
id
,
out
,
sizeof
(
entry
.
id
));
error
=
git_index_add
(
idx
,
&
entry
);
git_index_free
(
idx
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment