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
3e96e339
Commit
3e96e339
authored
May 05, 2013
by
Russell Belfer
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1549 from nulltoken/fix/from_oids
Strict/lax commit API
parents
dfec726b
467cbec7
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
include/git2/sys/commit.h
+3
-2
src/commit.c
+1
-1
No files found.
include/git2/sys/commit.h
View file @
3e96e339
...
...
@@ -25,8 +25,9 @@ GIT_BEGIN_DECL
*
* See documentation for `git_commit_create()` for information about the
* parameters, as the meaning is identical excepting that `tree` and
* `parents` now take `git_oid`. This is a dangerous API in that the
* `parents` list of `git_oid`s in not checked for validity.
* `parents` now take `git_oid`. This is a dangerous API in that nor
* the `tree`, neither the `parents` list of `git_oid`s are checked for
* validity.
*/
GIT_EXTERN
(
int
)
git_commit_create_from_oids
(
git_oid
*
oid
,
...
...
src/commit.c
View file @
3e96e339
...
...
@@ -96,7 +96,6 @@ int git_commit_create_from_oids(
git_odb
*
odb
;
assert
(
oid
&&
repo
&&
tree
&&
parent_count
>=
0
);
assert
(
git_object_owner
((
const
git_object
*
)
tree
)
==
repo
);
git_oid__writebuf
(
&
commit
,
"tree "
,
tree
);
...
...
@@ -149,6 +148,7 @@ int git_commit_create(
const
git_oid
**
parent_oids
;
assert
(
parent_count
>=
0
);
assert
(
git_object_owner
((
const
git_object
*
)
tree
)
==
repo
);
parent_oids
=
git__malloc
(
parent_count
*
sizeof
(
git_oid
*
));
GITERR_CHECK_ALLOC
(
parent_oids
);
...
...
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