rugged 1.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -0
- data/README.md +1 -1
- data/ext/rugged/rugged.c +7 -4
- data/ext/rugged/rugged_object.c +1 -1
- data/ext/rugged/rugged_repo.c +3 -3
- data/lib/rugged/repository.rb +2 -2
- data/lib/rugged/version.rb +1 -1
- data/vendor/libgit2/CMakeLists.txt +11 -6
- data/vendor/libgit2/COPYING +109 -1
- data/vendor/libgit2/cmake/Findfutimens.cmake +14 -0
- data/vendor/libgit2/cmake/SelectHTTPSBackend.cmake +4 -0
- data/vendor/libgit2/cmake/SelectHashes.cmake +1 -0
- data/vendor/libgit2/deps/chromium-zlib/CMakeLists.txt +101 -0
- data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +18 -5
- data/vendor/libgit2/deps/ntlmclient/compat.h +0 -34
- data/vendor/libgit2/deps/ntlmclient/crypt.h +14 -9
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.c +20 -20
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.h +3 -3
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.c +37 -36
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.h +4 -3
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +178 -51
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.h +74 -5
- data/vendor/libgit2/deps/ntlmclient/ntlm.c +156 -124
- data/vendor/libgit2/deps/ntlmclient/ntlm.h +13 -9
- data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +16 -3
- data/vendor/libgit2/deps/ntlmclient/unicode.h +10 -4
- data/vendor/libgit2/deps/ntlmclient/unicode_builtin.c +16 -27
- data/vendor/libgit2/deps/ntlmclient/unicode_builtin.h +20 -0
- data/vendor/libgit2/deps/ntlmclient/unicode_iconv.c +28 -52
- data/vendor/libgit2/deps/ntlmclient/unicode_iconv.h +22 -0
- data/vendor/libgit2/deps/ntlmclient/util.c +15 -1
- data/vendor/libgit2/deps/ntlmclient/util.h +2 -1
- data/vendor/libgit2/include/git2/apply.h +2 -0
- data/vendor/libgit2/include/git2/attr.h +89 -0
- data/vendor/libgit2/include/git2/blame.h +93 -42
- data/vendor/libgit2/include/git2/blob.h +31 -3
- data/vendor/libgit2/include/git2/branch.h +25 -0
- data/vendor/libgit2/include/git2/cert.h +42 -5
- data/vendor/libgit2/include/git2/checkout.h +28 -12
- data/vendor/libgit2/include/git2/commit.h +35 -19
- data/vendor/libgit2/include/git2/common.h +19 -4
- data/vendor/libgit2/include/git2/config.h +1 -1
- data/vendor/libgit2/include/git2/deprecated.h +206 -6
- data/vendor/libgit2/include/git2/diff.h +35 -20
- data/vendor/libgit2/include/git2/errors.h +6 -6
- data/vendor/libgit2/include/git2/filter.h +57 -17
- data/vendor/libgit2/include/git2/graph.h +20 -2
- data/vendor/libgit2/include/git2/index.h +3 -3
- data/vendor/libgit2/include/git2/indexer.h +2 -1
- data/vendor/libgit2/include/git2/odb.h +44 -20
- data/vendor/libgit2/include/git2/patch.h +8 -0
- data/vendor/libgit2/include/git2/rebase.h +25 -1
- data/vendor/libgit2/include/git2/refs.h +9 -5
- data/vendor/libgit2/include/git2/remote.h +59 -6
- data/vendor/libgit2/include/git2/repository.h +95 -52
- data/vendor/libgit2/include/git2/revparse.h +5 -5
- data/vendor/libgit2/include/git2/status.h +115 -59
- data/vendor/libgit2/include/git2/submodule.h +9 -0
- data/vendor/libgit2/include/git2/sys/commit_graph.h +174 -0
- data/vendor/libgit2/include/git2/sys/filter.h +49 -28
- data/vendor/libgit2/include/git2/sys/midx.h +74 -0
- data/vendor/libgit2/include/git2/sys/odb_backend.h +7 -0
- data/vendor/libgit2/include/git2/sys/transport.h +1 -0
- data/vendor/libgit2/include/git2/tag.h +12 -0
- data/vendor/libgit2/include/git2/transport.h +1 -1
- data/vendor/libgit2/include/git2/tree.h +2 -14
- data/vendor/libgit2/include/git2/types.h +9 -0
- data/vendor/libgit2/include/git2/version.h +3 -3
- data/vendor/libgit2/include/git2/worktree.h +1 -0
- data/vendor/libgit2/src/CMakeLists.txt +25 -4
- data/vendor/libgit2/src/alloc.c +21 -8
- data/vendor/libgit2/src/allocators/failalloc.c +92 -0
- data/vendor/libgit2/src/allocators/failalloc.h +23 -0
- data/vendor/libgit2/src/allocators/stdalloc.c +41 -10
- data/vendor/libgit2/src/allocators/win32_leakcheck.c +118 -0
- data/vendor/libgit2/src/allocators/{win32_crtdbg.h → win32_leakcheck.h} +3 -3
- data/vendor/libgit2/src/annotated_commit.c +21 -9
- data/vendor/libgit2/src/apply.c +16 -7
- data/vendor/libgit2/src/array.h +11 -11
- data/vendor/libgit2/src/attr.c +181 -74
- data/vendor/libgit2/src/attr_file.c +84 -39
- data/vendor/libgit2/src/attr_file.h +32 -11
- data/vendor/libgit2/src/attrcache.c +42 -37
- data/vendor/libgit2/src/attrcache.h +4 -5
- data/vendor/libgit2/src/blame.c +26 -15
- data/vendor/libgit2/src/blob.c +44 -24
- data/vendor/libgit2/src/branch.c +69 -17
- data/vendor/libgit2/src/buffer.c +334 -25
- data/vendor/libgit2/src/buffer.h +153 -2
- data/vendor/libgit2/src/cache.c +2 -2
- data/vendor/libgit2/src/cache.h +7 -7
- data/vendor/libgit2/src/cc-compat.h +10 -2
- data/vendor/libgit2/src/checkout.c +48 -26
- data/vendor/libgit2/src/cherrypick.c +6 -2
- data/vendor/libgit2/src/clone.c +26 -11
- data/vendor/libgit2/src/commit.c +41 -28
- data/vendor/libgit2/src/commit_graph.c +1209 -0
- data/vendor/libgit2/src/commit_graph.h +162 -0
- data/vendor/libgit2/src/commit_list.c +46 -0
- data/vendor/libgit2/src/commit_list.h +2 -0
- data/vendor/libgit2/src/common.h +25 -2
- data/vendor/libgit2/src/config.c +37 -15
- data/vendor/libgit2/src/config_cache.c +9 -4
- data/vendor/libgit2/src/config_file.c +16 -8
- data/vendor/libgit2/src/config_parse.c +4 -6
- data/vendor/libgit2/src/crlf.c +16 -6
- data/vendor/libgit2/src/date.c +4 -3
- data/vendor/libgit2/src/delta.c +1 -1
- data/vendor/libgit2/src/describe.c +6 -3
- data/vendor/libgit2/src/diff.c +11 -8
- data/vendor/libgit2/src/diff_driver.c +21 -17
- data/vendor/libgit2/src/diff_file.c +2 -6
- data/vendor/libgit2/src/diff_generate.c +46 -17
- data/vendor/libgit2/src/diff_print.c +19 -6
- data/vendor/libgit2/src/diff_stats.c +7 -5
- data/vendor/libgit2/src/diff_tform.c +11 -10
- data/vendor/libgit2/src/diff_xdiff.c +4 -2
- data/vendor/libgit2/src/diff_xdiff.h +1 -1
- data/vendor/libgit2/src/errors.c +24 -19
- data/vendor/libgit2/src/features.h.in +5 -1
- data/vendor/libgit2/src/fetch.c +5 -2
- data/vendor/libgit2/src/fetchhead.c +8 -4
- data/vendor/libgit2/src/filebuf.c +9 -7
- data/vendor/libgit2/src/filter.c +206 -110
- data/vendor/libgit2/src/filter.h +24 -5
- data/vendor/libgit2/src/futils.c +5 -5
- data/vendor/libgit2/src/futils.h +1 -1
- data/vendor/libgit2/src/graph.c +64 -9
- data/vendor/libgit2/src/hash/sha1/collisiondetect.c +3 -3
- data/vendor/libgit2/src/hash/sha1/common_crypto.c +3 -3
- data/vendor/libgit2/src/hash/sha1/generic.h +1 -1
- data/vendor/libgit2/src/hash/sha1/mbedtls.c +12 -12
- data/vendor/libgit2/src/hash/sha1/openssl.c +3 -3
- data/vendor/libgit2/src/hash/sha1/sha1dc/sha1.c +0 -2
- data/vendor/libgit2/src/hash/sha1/win32.c +15 -11
- data/vendor/libgit2/src/hash.c +16 -13
- data/vendor/libgit2/src/hash.h +1 -1
- data/vendor/libgit2/src/hashsig.c +23 -10
- data/vendor/libgit2/src/ident.c +13 -3
- data/vendor/libgit2/src/ignore.c +35 -19
- data/vendor/libgit2/src/index.c +112 -75
- data/vendor/libgit2/src/index.h +1 -1
- data/vendor/libgit2/src/indexer.c +50 -32
- data/vendor/libgit2/src/integer.h +79 -2
- data/vendor/libgit2/src/iterator.c +36 -24
- data/vendor/libgit2/src/iterator.h +1 -1
- data/vendor/libgit2/src/khash.h +2 -11
- data/vendor/libgit2/src/{settings.c → libgit2.c} +117 -50
- data/vendor/libgit2/src/libgit2.h +15 -0
- data/vendor/libgit2/src/mailmap.c +23 -10
- data/vendor/libgit2/src/map.h +3 -3
- data/vendor/libgit2/src/merge.c +75 -32
- data/vendor/libgit2/src/merge.h +2 -1
- data/vendor/libgit2/src/merge_driver.c +19 -13
- data/vendor/libgit2/src/merge_file.c +11 -3
- data/vendor/libgit2/src/message.c +3 -1
- data/vendor/libgit2/src/midx.c +471 -10
- data/vendor/libgit2/src/midx.h +28 -1
- data/vendor/libgit2/src/mwindow.c +106 -60
- data/vendor/libgit2/src/mwindow.h +3 -3
- data/vendor/libgit2/src/net.c +127 -3
- data/vendor/libgit2/src/net.h +16 -2
- data/vendor/libgit2/src/netops.c +6 -4
- data/vendor/libgit2/src/netops.h +2 -2
- data/vendor/libgit2/src/notes.c +10 -10
- data/vendor/libgit2/src/object.c +22 -14
- data/vendor/libgit2/src/odb.c +289 -51
- data/vendor/libgit2/src/odb.h +16 -2
- data/vendor/libgit2/src/odb_loose.c +28 -18
- data/vendor/libgit2/src/odb_mempack.c +1 -1
- data/vendor/libgit2/src/odb_pack.c +391 -114
- data/vendor/libgit2/src/oid.c +5 -4
- data/vendor/libgit2/src/pack-objects.c +54 -48
- data/vendor/libgit2/src/pack.c +339 -125
- data/vendor/libgit2/src/pack.h +25 -7
- data/vendor/libgit2/src/patch.c +14 -7
- data/vendor/libgit2/src/patch_generate.c +2 -2
- data/vendor/libgit2/src/patch_parse.c +2 -1
- data/vendor/libgit2/src/path.c +98 -53
- data/vendor/libgit2/src/path.h +79 -6
- data/vendor/libgit2/src/pathspec.c +8 -8
- data/vendor/libgit2/src/pool.c +13 -7
- data/vendor/libgit2/src/posix.c +43 -12
- data/vendor/libgit2/src/posix.h +9 -0
- data/vendor/libgit2/src/reader.c +10 -6
- data/vendor/libgit2/src/rebase.c +93 -49
- data/vendor/libgit2/src/refdb.c +30 -13
- data/vendor/libgit2/src/refdb_fs.c +125 -71
- data/vendor/libgit2/src/reflog.c +19 -14
- data/vendor/libgit2/src/refs.c +91 -43
- data/vendor/libgit2/src/refs.h +1 -1
- data/vendor/libgit2/src/refspec.c +80 -44
- data/vendor/libgit2/src/remote.c +281 -105
- data/vendor/libgit2/src/remote.h +2 -1
- data/vendor/libgit2/src/repository.c +191 -118
- data/vendor/libgit2/src/repository.h +13 -2
- data/vendor/libgit2/src/reset.c +7 -6
- data/vendor/libgit2/src/revert.c +6 -2
- data/vendor/libgit2/src/revparse.c +14 -9
- data/vendor/libgit2/src/revwalk.c +32 -15
- data/vendor/libgit2/src/runtime.c +162 -0
- data/vendor/libgit2/src/runtime.h +62 -0
- data/vendor/libgit2/src/settings.h +11 -0
- data/vendor/libgit2/src/signature.c +6 -5
- data/vendor/libgit2/src/sortedcache.h +10 -8
- data/vendor/libgit2/src/stash.c +3 -1
- data/vendor/libgit2/src/status.c +7 -4
- data/vendor/libgit2/src/strarray.c +2 -1
- data/vendor/libgit2/src/streams/mbedtls.c +14 -17
- data/vendor/libgit2/src/streams/mbedtls.h +1 -1
- data/vendor/libgit2/src/streams/openssl.c +101 -201
- data/vendor/libgit2/src/streams/openssl.h +9 -1
- data/vendor/libgit2/src/streams/openssl_dynamic.c +309 -0
- data/vendor/libgit2/src/streams/openssl_dynamic.h +348 -0
- data/vendor/libgit2/src/streams/openssl_legacy.c +203 -0
- data/vendor/libgit2/src/streams/openssl_legacy.h +63 -0
- data/vendor/libgit2/src/streams/registry.c +5 -6
- data/vendor/libgit2/src/streams/socket.c +6 -2
- data/vendor/libgit2/src/streams/stransport.c +6 -3
- data/vendor/libgit2/src/streams/tls.c +5 -3
- data/vendor/libgit2/src/submodule.c +128 -62
- data/vendor/libgit2/src/submodule.h +9 -9
- data/vendor/libgit2/src/sysdir.c +4 -6
- data/vendor/libgit2/src/tag.c +47 -11
- data/vendor/libgit2/src/thread.c +140 -0
- data/vendor/libgit2/src/thread.h +479 -0
- data/vendor/libgit2/src/threadstate.c +83 -0
- data/vendor/libgit2/src/threadstate.h +24 -0
- data/vendor/libgit2/src/trace.c +2 -2
- data/vendor/libgit2/src/trace.h +17 -13
- data/vendor/libgit2/src/transaction.c +19 -8
- data/vendor/libgit2/src/transport.c +3 -3
- data/vendor/libgit2/src/transports/auth.c +1 -1
- data/vendor/libgit2/src/transports/auth_negotiate.c +11 -4
- data/vendor/libgit2/src/transports/auth_ntlm.c +10 -6
- data/vendor/libgit2/src/transports/credential.c +15 -7
- data/vendor/libgit2/src/transports/git.c +1 -3
- data/vendor/libgit2/src/transports/http.c +19 -17
- data/vendor/libgit2/src/transports/http.h +1 -0
- data/vendor/libgit2/src/transports/httpclient.c +62 -30
- data/vendor/libgit2/src/transports/httpclient.h +1 -1
- data/vendor/libgit2/src/transports/local.c +3 -3
- data/vendor/libgit2/src/transports/smart.c +12 -7
- data/vendor/libgit2/src/transports/smart.h +1 -1
- data/vendor/libgit2/src/transports/smart_protocol.c +11 -5
- data/vendor/libgit2/src/transports/ssh.c +51 -17
- data/vendor/libgit2/src/transports/winhttp.c +138 -81
- data/vendor/libgit2/src/tree.c +100 -77
- data/vendor/libgit2/src/tree.h +1 -0
- data/vendor/libgit2/src/tsort.c +0 -2
- data/vendor/libgit2/src/unix/map.c +3 -1
- data/vendor/libgit2/src/unix/posix.h +3 -0
- data/vendor/libgit2/src/unix/pthread.h +2 -1
- data/vendor/libgit2/src/utf8.c +150 -0
- data/vendor/libgit2/src/utf8.h +52 -0
- data/vendor/libgit2/src/util.c +53 -129
- data/vendor/libgit2/src/util.h +33 -39
- data/vendor/libgit2/src/vector.c +23 -19
- data/vendor/libgit2/src/vector.h +4 -2
- data/vendor/libgit2/src/win32/findfile.c +4 -2
- data/vendor/libgit2/src/win32/map.c +1 -1
- data/vendor/libgit2/src/win32/msvc-compat.h +9 -1
- data/vendor/libgit2/src/win32/path_w32.c +22 -24
- data/vendor/libgit2/src/win32/path_w32.h +0 -1
- data/vendor/libgit2/src/win32/posix_w32.c +77 -1
- data/vendor/libgit2/src/win32/precompiled.h +0 -1
- data/vendor/libgit2/src/win32/reparse.h +4 -4
- data/vendor/libgit2/src/win32/thread.c +24 -15
- data/vendor/libgit2/src/win32/thread.h +1 -1
- data/vendor/libgit2/src/win32/w32_buffer.c +3 -3
- data/vendor/libgit2/src/win32/w32_common.h +18 -9
- data/vendor/libgit2/src/win32/{w32_crtdbg_stacktrace.c → w32_leakcheck.c} +269 -33
- data/vendor/libgit2/src/win32/w32_leakcheck.h +222 -0
- data/vendor/libgit2/src/win32/w32_util.h +6 -6
- data/vendor/libgit2/src/worktree.c +32 -14
- data/vendor/libgit2/src/zstream.c +1 -1
- metadata +32 -16
- data/vendor/libgit2/src/allocators/win32_crtdbg.c +0 -118
- data/vendor/libgit2/src/buf_text.c +0 -316
- data/vendor/libgit2/src/buf_text.h +0 -122
- data/vendor/libgit2/src/global.c +0 -363
- data/vendor/libgit2/src/global.h +0 -41
- data/vendor/libgit2/src/thread-utils.c +0 -58
- data/vendor/libgit2/src/thread-utils.h +0 -364
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +0 -127
- data/vendor/libgit2/src/win32/w32_stack.c +0 -188
- data/vendor/libgit2/src/win32/w32_stack.h +0 -140
@@ -334,6 +334,7 @@ GIT_EXTERN(int) git_treebuilder_insert(
|
|
334
334
|
*
|
335
335
|
* @param bld Tree builder
|
336
336
|
* @param filename Filename of the entry to remove
|
337
|
+
* @return 0 or an error code
|
337
338
|
*/
|
338
339
|
GIT_EXTERN(int) git_treebuilder_remove(
|
339
340
|
git_treebuilder *bld, const char *filename);
|
@@ -378,20 +379,6 @@ GIT_EXTERN(int) git_treebuilder_filter(
|
|
378
379
|
GIT_EXTERN(int) git_treebuilder_write(
|
379
380
|
git_oid *id, git_treebuilder *bld);
|
380
381
|
|
381
|
-
/**
|
382
|
-
* Write the contents of the tree builder as a tree object
|
383
|
-
* using a shared git_buf.
|
384
|
-
*
|
385
|
-
* @see git_treebuilder_write
|
386
|
-
*
|
387
|
-
* @param oid Pointer to store the OID of the newly written tree
|
388
|
-
* @param bld Tree builder to write
|
389
|
-
* @param tree Shared buffer for writing the tree. Will be grown as necessary.
|
390
|
-
* @return 0 or an error code
|
391
|
-
*/
|
392
|
-
GIT_EXTERN(int) git_treebuilder_write_with_buffer(
|
393
|
-
git_oid *oid, git_treebuilder *bld, git_buf *tree);
|
394
|
-
|
395
382
|
/** Callback for the tree traversal method */
|
396
383
|
typedef int GIT_CALLBACK(git_treewalk_cb)(
|
397
384
|
const char *root, const git_tree_entry *entry, void *payload);
|
@@ -477,6 +464,7 @@ typedef struct {
|
|
477
464
|
* @param baseline the tree to base these changes on
|
478
465
|
* @param nupdates the number of elements in the update list
|
479
466
|
* @param updates the list of updates to perform
|
467
|
+
* @return 0 or an error code
|
480
468
|
*/
|
481
469
|
GIT_EXTERN(int) git_tree_create_updated(git_oid *out, git_repository *repo, git_tree *baseline, size_t nupdates, const git_tree_update *updates);
|
482
470
|
|
@@ -96,12 +96,21 @@ typedef struct git_odb_stream git_odb_stream;
|
|
96
96
|
/** A stream to write a packfile to the ODB */
|
97
97
|
typedef struct git_odb_writepack git_odb_writepack;
|
98
98
|
|
99
|
+
/** a writer for multi-pack-index files. */
|
100
|
+
typedef struct git_midx_writer git_midx_writer;
|
101
|
+
|
99
102
|
/** An open refs database handle. */
|
100
103
|
typedef struct git_refdb git_refdb;
|
101
104
|
|
102
105
|
/** A custom backend for refs */
|
103
106
|
typedef struct git_refdb_backend git_refdb_backend;
|
104
107
|
|
108
|
+
/** A git commit-graph */
|
109
|
+
typedef struct git_commit_graph git_commit_graph;
|
110
|
+
|
111
|
+
/** a writer for commit-graph files. */
|
112
|
+
typedef struct git_commit_graph_writer git_commit_graph_writer;
|
113
|
+
|
105
114
|
/**
|
106
115
|
* Representation of an existing git repository,
|
107
116
|
* including all its object contents
|
@@ -7,12 +7,12 @@
|
|
7
7
|
#ifndef INCLUDE_git_version_h__
|
8
8
|
#define INCLUDE_git_version_h__
|
9
9
|
|
10
|
-
#define LIBGIT2_VERSION "1.
|
10
|
+
#define LIBGIT2_VERSION "1.2.0"
|
11
11
|
#define LIBGIT2_VER_MAJOR 1
|
12
|
-
#define LIBGIT2_VER_MINOR
|
12
|
+
#define LIBGIT2_VER_MINOR 2
|
13
13
|
#define LIBGIT2_VER_REVISION 0
|
14
14
|
#define LIBGIT2_VER_PATCH 0
|
15
15
|
|
16
|
-
#define LIBGIT2_SOVERSION "1.
|
16
|
+
#define LIBGIT2_SOVERSION "1.2"
|
17
17
|
|
18
18
|
#endif
|
@@ -6,7 +6,18 @@ IF(DEBUG_POOL)
|
|
6
6
|
ENDIF()
|
7
7
|
ADD_FEATURE_INFO(debugpool GIT_DEBUG_POOL "debug pool allocator")
|
8
8
|
|
9
|
+
IF(DEBUG_STRICT_ALLOC)
|
10
|
+
SET(GIT_DEBUG_STRICT_ALLOC 1)
|
11
|
+
ENDIF()
|
12
|
+
ADD_FEATURE_INFO(debugalloc GIT_DEBUG_STRICT_ALLOC "debug strict allocators")
|
13
|
+
|
14
|
+
IF(DEBUG_STRICT_OPEN)
|
15
|
+
SET(GIT_DEBUG_STRICT_OPEN 1)
|
16
|
+
ENDIF()
|
17
|
+
ADD_FEATURE_INFO(debugopen GIT_DEBUG_STRICT_OPEN "path validation in open")
|
18
|
+
|
9
19
|
INCLUDE(PkgBuildConfig)
|
20
|
+
INCLUDE(SanitizeBool)
|
10
21
|
|
11
22
|
# This variable will contain the libraries we need to put into
|
12
23
|
# libgit2.pc's Requires.private. That is, what we're linking to or
|
@@ -32,10 +43,10 @@ IF(ENABLE_TRACE)
|
|
32
43
|
ENDIF()
|
33
44
|
ADD_FEATURE_INFO(tracing GIT_TRACE "tracing support")
|
34
45
|
|
35
|
-
CHECK_FUNCTION_EXISTS(futimens HAVE_FUTIMENS)
|
36
46
|
IF (HAVE_FUTIMENS)
|
37
47
|
SET(GIT_USE_FUTIMENS 1)
|
38
48
|
ENDIF ()
|
49
|
+
ADD_FEATURE_INFO(futimens GIT_USE_FUTIMENS "futimens support")
|
39
50
|
|
40
51
|
CHECK_PROTOTYPE_DEFINITION(qsort_r
|
41
52
|
"void qsort_r(void *base, size_t nmemb, size_t size, void *thunk, int (*compar)(void *, const void *, const void *))"
|
@@ -186,7 +197,12 @@ ELSE()
|
|
186
197
|
ENDIF()
|
187
198
|
|
188
199
|
# Optional external dependency: zlib
|
189
|
-
|
200
|
+
SanitizeBool(USE_BUNDLED_ZLIB)
|
201
|
+
IF(USE_BUNDLED_ZLIB STREQUAL ON)
|
202
|
+
SET(USE_BUNDLED_ZLIB "Bundled")
|
203
|
+
ENDIF()
|
204
|
+
|
205
|
+
IF(USE_BUNDLED_ZLIB STREQUAL "OFF")
|
190
206
|
FIND_PACKAGE(ZLIB)
|
191
207
|
IF(ZLIB_FOUND)
|
192
208
|
LIST(APPEND LIBGIT2_SYSTEM_INCLUDES ${ZLIB_INCLUDE_DIRS})
|
@@ -201,7 +217,12 @@ IF(NOT USE_BUNDLED_ZLIB)
|
|
201
217
|
MESSAGE(STATUS "zlib was not found; using bundled 3rd-party sources." )
|
202
218
|
ENDIF()
|
203
219
|
ENDIF()
|
204
|
-
IF(USE_BUNDLED_ZLIB
|
220
|
+
IF(USE_BUNDLED_ZLIB STREQUAL "Chromium")
|
221
|
+
ADD_SUBDIRECTORY("${libgit2_SOURCE_DIR}/deps/chromium-zlib" "${libgit2_BINARY_DIR}/deps/chromium-zlib")
|
222
|
+
LIST(APPEND LIBGIT2_INCLUDES "${libgit2_SOURCE_DIR}/deps/chromium-zlib")
|
223
|
+
LIST(APPEND LIBGIT2_OBJECTS $<TARGET_OBJECTS:chromium_zlib>)
|
224
|
+
ADD_FEATURE_INFO(zlib ON "using (Chromium) bundled zlib")
|
225
|
+
ELSEIF(USE_BUNDLED_ZLIB OR NOT ZLIB_FOUND)
|
205
226
|
ADD_SUBDIRECTORY("${libgit2_SOURCE_DIR}/deps/zlib" "${libgit2_BINARY_DIR}/deps/zlib")
|
206
227
|
LIST(APPEND LIBGIT2_INCLUDES "${libgit2_SOURCE_DIR}/deps/zlib")
|
207
228
|
LIST(APPEND LIBGIT2_OBJECTS $<TARGET_OBJECTS:zlib>)
|
@@ -374,7 +395,7 @@ if(SONAME)
|
|
374
395
|
set_target_properties(git2 PROPERTIES VERSION ${libgit2_VERSION})
|
375
396
|
set_target_properties(git2 PROPERTIES SOVERSION "${libgit2_VERSION_MAJOR}.${libgit2_VERSION_MINOR}")
|
376
397
|
if(LIBGIT2_FILENAME)
|
377
|
-
target_compile_definitions(
|
398
|
+
target_compile_definitions(git2 PRIVATE LIBGIT2_FILENAME=\"${LIBGIT2_FILENAME}\")
|
378
399
|
set_target_properties(git2 PROPERTIES OUTPUT_NAME ${LIBGIT2_FILENAME})
|
379
400
|
elseif(DEFINED LIBGIT2_PREFIX)
|
380
401
|
set_target_properties(git2 PROPERTIES PREFIX "${LIBGIT2_PREFIX}")
|
data/vendor/libgit2/src/alloc.c
CHANGED
@@ -6,16 +6,29 @@
|
|
6
6
|
*/
|
7
7
|
|
8
8
|
#include "alloc.h"
|
9
|
+
#include "runtime.h"
|
9
10
|
|
11
|
+
#include "allocators/failalloc.h"
|
10
12
|
#include "allocators/stdalloc.h"
|
11
|
-
#include "allocators/
|
12
|
-
|
13
|
-
|
13
|
+
#include "allocators/win32_leakcheck.h"
|
14
|
+
|
15
|
+
/* Fail any allocation until git_libgit2_init is called. */
|
16
|
+
git_allocator git__allocator = {
|
17
|
+
git_failalloc_malloc,
|
18
|
+
git_failalloc_calloc,
|
19
|
+
git_failalloc_strdup,
|
20
|
+
git_failalloc_strndup,
|
21
|
+
git_failalloc_substrdup,
|
22
|
+
git_failalloc_realloc,
|
23
|
+
git_failalloc_reallocarray,
|
24
|
+
git_failalloc_mallocarray,
|
25
|
+
git_failalloc_free
|
26
|
+
};
|
14
27
|
|
15
28
|
static int setup_default_allocator(void)
|
16
29
|
{
|
17
|
-
#if defined(
|
18
|
-
return
|
30
|
+
#if defined(GIT_WIN32_LEAKCHECK)
|
31
|
+
return git_win32_leakcheck_init_allocator(&git__allocator);
|
19
32
|
#else
|
20
33
|
return git_stdalloc_init_allocator(&git__allocator);
|
21
34
|
#endif
|
@@ -24,10 +37,10 @@ static int setup_default_allocator(void)
|
|
24
37
|
int git_allocator_global_init(void)
|
25
38
|
{
|
26
39
|
/*
|
27
|
-
* We don't want to overwrite any allocator which has been set
|
28
|
-
* the init function is called.
|
40
|
+
* We don't want to overwrite any allocator which has been set
|
41
|
+
* before the init function is called.
|
29
42
|
*/
|
30
|
-
if (git__allocator.gmalloc !=
|
43
|
+
if (git__allocator.gmalloc != git_failalloc_malloc)
|
31
44
|
return 0;
|
32
45
|
|
33
46
|
return setup_default_allocator();
|
@@ -0,0 +1,92 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) the libgit2 contributors. All rights reserved.
|
3
|
+
*
|
4
|
+
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
|
+
* a Linking Exception. For full terms see the included COPYING file.
|
6
|
+
*/
|
7
|
+
|
8
|
+
#include "failalloc.h"
|
9
|
+
|
10
|
+
void *git_failalloc_malloc(size_t len, const char *file, int line)
|
11
|
+
{
|
12
|
+
GIT_UNUSED(len);
|
13
|
+
GIT_UNUSED(file);
|
14
|
+
GIT_UNUSED(line);
|
15
|
+
|
16
|
+
return NULL;
|
17
|
+
}
|
18
|
+
|
19
|
+
void *git_failalloc_calloc(size_t nelem, size_t elsize, const char *file, int line)
|
20
|
+
{
|
21
|
+
GIT_UNUSED(nelem);
|
22
|
+
GIT_UNUSED(elsize);
|
23
|
+
GIT_UNUSED(file);
|
24
|
+
GIT_UNUSED(line);
|
25
|
+
|
26
|
+
return NULL;
|
27
|
+
}
|
28
|
+
|
29
|
+
char *git_failalloc_strdup(const char *str, const char *file, int line)
|
30
|
+
{
|
31
|
+
GIT_UNUSED(str);
|
32
|
+
GIT_UNUSED(file);
|
33
|
+
GIT_UNUSED(line);
|
34
|
+
|
35
|
+
return NULL;
|
36
|
+
}
|
37
|
+
|
38
|
+
char *git_failalloc_strndup(const char *str, size_t n, const char *file, int line)
|
39
|
+
{
|
40
|
+
GIT_UNUSED(str);
|
41
|
+
GIT_UNUSED(n);
|
42
|
+
GIT_UNUSED(file);
|
43
|
+
GIT_UNUSED(line);
|
44
|
+
|
45
|
+
return NULL;
|
46
|
+
}
|
47
|
+
|
48
|
+
char *git_failalloc_substrdup(const char *start, size_t n, const char *file, int line)
|
49
|
+
{
|
50
|
+
GIT_UNUSED(start);
|
51
|
+
GIT_UNUSED(n);
|
52
|
+
GIT_UNUSED(file);
|
53
|
+
GIT_UNUSED(line);
|
54
|
+
|
55
|
+
return NULL;
|
56
|
+
}
|
57
|
+
|
58
|
+
void *git_failalloc_realloc(void *ptr, size_t size, const char *file, int line)
|
59
|
+
{
|
60
|
+
GIT_UNUSED(ptr);
|
61
|
+
GIT_UNUSED(size);
|
62
|
+
GIT_UNUSED(file);
|
63
|
+
GIT_UNUSED(line);
|
64
|
+
|
65
|
+
return NULL;
|
66
|
+
}
|
67
|
+
|
68
|
+
void *git_failalloc_reallocarray(void *ptr, size_t nelem, size_t elsize, const char *file, int line)
|
69
|
+
{
|
70
|
+
GIT_UNUSED(ptr);
|
71
|
+
GIT_UNUSED(nelem);
|
72
|
+
GIT_UNUSED(elsize);
|
73
|
+
GIT_UNUSED(file);
|
74
|
+
GIT_UNUSED(line);
|
75
|
+
|
76
|
+
return NULL;
|
77
|
+
}
|
78
|
+
|
79
|
+
void *git_failalloc_mallocarray(size_t nelem, size_t elsize, const char *file, int line)
|
80
|
+
{
|
81
|
+
GIT_UNUSED(nelem);
|
82
|
+
GIT_UNUSED(elsize);
|
83
|
+
GIT_UNUSED(file);
|
84
|
+
GIT_UNUSED(line);
|
85
|
+
|
86
|
+
return NULL;
|
87
|
+
}
|
88
|
+
|
89
|
+
void git_failalloc_free(void *ptr)
|
90
|
+
{
|
91
|
+
GIT_UNUSED(ptr);
|
92
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) the libgit2 contributors. All rights reserved.
|
3
|
+
*
|
4
|
+
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
|
+
* a Linking Exception. For full terms see the included COPYING file.
|
6
|
+
*/
|
7
|
+
|
8
|
+
#ifndef INCLUDE_allocators_failalloc_h__
|
9
|
+
#define INCLUDE_allocators_failalloc_h__
|
10
|
+
|
11
|
+
#include "common.h"
|
12
|
+
|
13
|
+
extern void *git_failalloc_malloc(size_t len, const char *file, int line);
|
14
|
+
extern void *git_failalloc_calloc(size_t nelem, size_t elsize, const char *file, int line);
|
15
|
+
extern char *git_failalloc_strdup(const char *str, const char *file, int line);
|
16
|
+
extern char *git_failalloc_strndup(const char *str, size_t n, const char *file, int line);
|
17
|
+
extern char *git_failalloc_substrdup(const char *start, size_t n, const char *file, int line);
|
18
|
+
extern void *git_failalloc_realloc(void *ptr, size_t size, const char *file, int line);
|
19
|
+
extern void *git_failalloc_reallocarray(void *ptr, size_t nelem, size_t elsize, const char *file, int line);
|
20
|
+
extern void *git_failalloc_mallocarray(size_t nelem, size_t elsize, const char *file, int line);
|
21
|
+
extern void git_failalloc_free(void *ptr);
|
22
|
+
|
23
|
+
#endif
|
@@ -9,34 +9,56 @@
|
|
9
9
|
|
10
10
|
static void *stdalloc__malloc(size_t len, const char *file, int line)
|
11
11
|
{
|
12
|
-
void *ptr
|
12
|
+
void *ptr;
|
13
13
|
|
14
14
|
GIT_UNUSED(file);
|
15
15
|
GIT_UNUSED(line);
|
16
16
|
|
17
|
-
|
17
|
+
#ifdef GIT_DEBUG_STRICT_ALLOC
|
18
|
+
if (!len)
|
19
|
+
return NULL;
|
20
|
+
#endif
|
21
|
+
|
22
|
+
ptr = malloc(len);
|
23
|
+
|
24
|
+
if (!ptr)
|
25
|
+
git_error_set_oom();
|
26
|
+
|
18
27
|
return ptr;
|
19
28
|
}
|
20
29
|
|
21
30
|
static void *stdalloc__calloc(size_t nelem, size_t elsize, const char *file, int line)
|
22
31
|
{
|
23
|
-
void *ptr
|
32
|
+
void *ptr;
|
24
33
|
|
25
34
|
GIT_UNUSED(file);
|
26
35
|
GIT_UNUSED(line);
|
27
36
|
|
28
|
-
|
37
|
+
#ifdef GIT_DEBUG_STRICT_ALLOC
|
38
|
+
if (!elsize || !nelem)
|
39
|
+
return NULL;
|
40
|
+
#endif
|
41
|
+
|
42
|
+
ptr = calloc(nelem, elsize);
|
43
|
+
|
44
|
+
if (!ptr)
|
45
|
+
git_error_set_oom();
|
46
|
+
|
29
47
|
return ptr;
|
30
48
|
}
|
31
49
|
|
32
50
|
static char *stdalloc__strdup(const char *str, const char *file, int line)
|
33
51
|
{
|
34
|
-
char *ptr
|
52
|
+
char *ptr;
|
35
53
|
|
36
54
|
GIT_UNUSED(file);
|
37
55
|
GIT_UNUSED(line);
|
38
56
|
|
39
|
-
|
57
|
+
ptr = strdup(str);
|
58
|
+
|
59
|
+
if (!ptr)
|
60
|
+
git_error_set_oom();
|
61
|
+
|
40
62
|
return ptr;
|
41
63
|
}
|
42
64
|
|
@@ -48,7 +70,7 @@ static char *stdalloc__strndup(const char *str, size_t n, const char *file, int
|
|
48
70
|
length = p_strnlen(str, n);
|
49
71
|
|
50
72
|
if (GIT_ADD_SIZET_OVERFLOW(&alloclength, length, 1) ||
|
51
|
-
|
73
|
+
!(ptr = stdalloc__malloc(alloclength, file, line)))
|
52
74
|
return NULL;
|
53
75
|
|
54
76
|
if (length)
|
@@ -65,7 +87,7 @@ static char *stdalloc__substrdup(const char *start, size_t n, const char *file,
|
|
65
87
|
size_t alloclen;
|
66
88
|
|
67
89
|
if (GIT_ADD_SIZET_OVERFLOW(&alloclen, n, 1) ||
|
68
|
-
|
90
|
+
!(ptr = stdalloc__malloc(alloclen, file, line)))
|
69
91
|
return NULL;
|
70
92
|
|
71
93
|
memcpy(ptr, start, n);
|
@@ -75,12 +97,21 @@ static char *stdalloc__substrdup(const char *start, size_t n, const char *file,
|
|
75
97
|
|
76
98
|
static void *stdalloc__realloc(void *ptr, size_t size, const char *file, int line)
|
77
99
|
{
|
78
|
-
void *new_ptr
|
100
|
+
void *new_ptr;
|
79
101
|
|
80
102
|
GIT_UNUSED(file);
|
81
103
|
GIT_UNUSED(line);
|
82
104
|
|
83
|
-
|
105
|
+
#ifdef GIT_DEBUG_STRICT_ALLOC
|
106
|
+
if (!size)
|
107
|
+
return NULL;
|
108
|
+
#endif
|
109
|
+
|
110
|
+
new_ptr = realloc(ptr, size);
|
111
|
+
|
112
|
+
if (!new_ptr)
|
113
|
+
git_error_set_oom();
|
114
|
+
|
84
115
|
return new_ptr;
|
85
116
|
}
|
86
117
|
|
@@ -0,0 +1,118 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) the libgit2 contributors. All rights reserved.
|
3
|
+
*
|
4
|
+
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
|
+
* a Linking Exception. For full terms see the included COPYING file.
|
6
|
+
*/
|
7
|
+
|
8
|
+
#include "win32_leakcheck.h"
|
9
|
+
|
10
|
+
#if defined(GIT_WIN32_LEAKCHECK)
|
11
|
+
|
12
|
+
#include "win32/w32_leakcheck.h"
|
13
|
+
|
14
|
+
static void *leakcheck_malloc(size_t len, const char *file, int line)
|
15
|
+
{
|
16
|
+
void *ptr = _malloc_dbg(len, _NORMAL_BLOCK, git_win32_leakcheck_stacktrace(1,file), line);
|
17
|
+
if (!ptr) git_error_set_oom();
|
18
|
+
return ptr;
|
19
|
+
}
|
20
|
+
|
21
|
+
static void *leakcheck_calloc(size_t nelem, size_t elsize, const char *file, int line)
|
22
|
+
{
|
23
|
+
void *ptr = _calloc_dbg(nelem, elsize, _NORMAL_BLOCK, git_win32_leakcheck_stacktrace(1,file), line);
|
24
|
+
if (!ptr) git_error_set_oom();
|
25
|
+
return ptr;
|
26
|
+
}
|
27
|
+
|
28
|
+
static char *leakcheck_strdup(const char *str, const char *file, int line)
|
29
|
+
{
|
30
|
+
char *ptr = _strdup_dbg(str, _NORMAL_BLOCK, git_win32_leakcheck_stacktrace(1,file), line);
|
31
|
+
if (!ptr) git_error_set_oom();
|
32
|
+
return ptr;
|
33
|
+
}
|
34
|
+
|
35
|
+
static char *leakcheck_strndup(const char *str, size_t n, const char *file, int line)
|
36
|
+
{
|
37
|
+
size_t length = 0, alloclength;
|
38
|
+
char *ptr;
|
39
|
+
|
40
|
+
length = p_strnlen(str, n);
|
41
|
+
|
42
|
+
if (GIT_ADD_SIZET_OVERFLOW(&alloclength, length, 1) ||
|
43
|
+
!(ptr = leakcheck_malloc(alloclength, file, line)))
|
44
|
+
return NULL;
|
45
|
+
|
46
|
+
if (length)
|
47
|
+
memcpy(ptr, str, length);
|
48
|
+
|
49
|
+
ptr[length] = '\0';
|
50
|
+
|
51
|
+
return ptr;
|
52
|
+
}
|
53
|
+
|
54
|
+
static char *leakcheck_substrdup(const char *start, size_t n, const char *file, int line)
|
55
|
+
{
|
56
|
+
char *ptr;
|
57
|
+
size_t alloclen;
|
58
|
+
|
59
|
+
if (GIT_ADD_SIZET_OVERFLOW(&alloclen, n, 1) ||
|
60
|
+
!(ptr = leakcheck_malloc(alloclen, file, line)))
|
61
|
+
return NULL;
|
62
|
+
|
63
|
+
memcpy(ptr, start, n);
|
64
|
+
ptr[n] = '\0';
|
65
|
+
return ptr;
|
66
|
+
}
|
67
|
+
|
68
|
+
static void *leakcheck_realloc(void *ptr, size_t size, const char *file, int line)
|
69
|
+
{
|
70
|
+
void *new_ptr = _realloc_dbg(ptr, size, _NORMAL_BLOCK, git_win32_leakcheck_stacktrace(1,file), line);
|
71
|
+
if (!new_ptr) git_error_set_oom();
|
72
|
+
return new_ptr;
|
73
|
+
}
|
74
|
+
|
75
|
+
static void *leakcheck_reallocarray(void *ptr, size_t nelem, size_t elsize, const char *file, int line)
|
76
|
+
{
|
77
|
+
size_t newsize;
|
78
|
+
|
79
|
+
if (GIT_MULTIPLY_SIZET_OVERFLOW(&newsize, nelem, elsize))
|
80
|
+
return NULL;
|
81
|
+
|
82
|
+
return leakcheck_realloc(ptr, newsize, file, line);
|
83
|
+
}
|
84
|
+
|
85
|
+
static void *leakcheck_mallocarray(size_t nelem, size_t elsize, const char *file, int line)
|
86
|
+
{
|
87
|
+
return leakcheck_reallocarray(NULL, nelem, elsize, file, line);
|
88
|
+
}
|
89
|
+
|
90
|
+
static void leakcheck_free(void *ptr)
|
91
|
+
{
|
92
|
+
free(ptr);
|
93
|
+
}
|
94
|
+
|
95
|
+
int git_win32_leakcheck_init_allocator(git_allocator *allocator)
|
96
|
+
{
|
97
|
+
allocator->gmalloc = leakcheck_malloc;
|
98
|
+
allocator->gcalloc = leakcheck_calloc;
|
99
|
+
allocator->gstrdup = leakcheck_strdup;
|
100
|
+
allocator->gstrndup = leakcheck_strndup;
|
101
|
+
allocator->gsubstrdup = leakcheck_substrdup;
|
102
|
+
allocator->grealloc = leakcheck_realloc;
|
103
|
+
allocator->greallocarray = leakcheck_reallocarray;
|
104
|
+
allocator->gmallocarray = leakcheck_mallocarray;
|
105
|
+
allocator->gfree = leakcheck_free;
|
106
|
+
return 0;
|
107
|
+
}
|
108
|
+
|
109
|
+
#else
|
110
|
+
|
111
|
+
int git_win32_leakcheck_init_allocator(git_allocator *allocator)
|
112
|
+
{
|
113
|
+
GIT_UNUSED(allocator);
|
114
|
+
git_error_set(GIT_EINVALID, "leakcheck memory allocator not available");
|
115
|
+
return -1;
|
116
|
+
}
|
117
|
+
|
118
|
+
#endif
|
@@ -5,13 +5,13 @@
|
|
5
5
|
* a Linking Exception. For full terms see the included COPYING file.
|
6
6
|
*/
|
7
7
|
|
8
|
-
#ifndef
|
9
|
-
#define
|
8
|
+
#ifndef INCLUDE_allocators_win32_leakcheck_h
|
9
|
+
#define INCLUDE_allocators_win32_leakcheck_h
|
10
10
|
|
11
11
|
#include "common.h"
|
12
12
|
|
13
13
|
#include "alloc.h"
|
14
14
|
|
15
|
-
int
|
15
|
+
int git_win32_leakcheck_init_allocator(git_allocator *allocator);
|
16
16
|
|
17
17
|
#endif
|
@@ -26,7 +26,8 @@ static int annotated_commit_init(
|
|
26
26
|
git_annotated_commit *annotated_commit;
|
27
27
|
int error = 0;
|
28
28
|
|
29
|
-
|
29
|
+
GIT_ASSERT_ARG(out);
|
30
|
+
GIT_ASSERT_ARG(commit);
|
30
31
|
|
31
32
|
*out = NULL;
|
32
33
|
|
@@ -63,7 +64,9 @@ static int annotated_commit_init_from_id(
|
|
63
64
|
git_commit *commit = NULL;
|
64
65
|
int error = 0;
|
65
66
|
|
66
|
-
|
67
|
+
GIT_ASSERT_ARG(out);
|
68
|
+
GIT_ASSERT_ARG(repo);
|
69
|
+
GIT_ASSERT_ARG(id);
|
67
70
|
|
68
71
|
*out = NULL;
|
69
72
|
|
@@ -100,7 +103,9 @@ int git_annotated_commit_from_revspec(
|
|
100
103
|
git_object *obj, *commit;
|
101
104
|
int error;
|
102
105
|
|
103
|
-
|
106
|
+
GIT_ASSERT_ARG(out);
|
107
|
+
GIT_ASSERT_ARG(repo);
|
108
|
+
GIT_ASSERT_ARG(revspec);
|
104
109
|
|
105
110
|
if ((error = git_revparse_single(&obj, repo, revspec)) < 0)
|
106
111
|
return error;
|
@@ -126,7 +131,9 @@ int git_annotated_commit_from_ref(
|
|
126
131
|
git_object *peeled;
|
127
132
|
int error = 0;
|
128
133
|
|
129
|
-
|
134
|
+
GIT_ASSERT_ARG(out);
|
135
|
+
GIT_ASSERT_ARG(repo);
|
136
|
+
GIT_ASSERT_ARG(ref);
|
130
137
|
|
131
138
|
*out = NULL;
|
132
139
|
|
@@ -154,11 +161,12 @@ int git_annotated_commit_from_head(
|
|
154
161
|
git_reference *head;
|
155
162
|
int error;
|
156
163
|
|
157
|
-
|
164
|
+
GIT_ASSERT_ARG(out);
|
165
|
+
GIT_ASSERT_ARG(repo);
|
158
166
|
|
159
167
|
*out = NULL;
|
160
168
|
|
161
|
-
|
169
|
+
if ((error = git_reference_lookup(&head, repo, GIT_HEAD_FILE)) < 0)
|
162
170
|
return -1;
|
163
171
|
|
164
172
|
error = git_annotated_commit_from_ref(out, repo, head);
|
@@ -174,7 +182,11 @@ int git_annotated_commit_from_fetchhead(
|
|
174
182
|
const char *remote_url,
|
175
183
|
const git_oid *id)
|
176
184
|
{
|
177
|
-
|
185
|
+
GIT_ASSERT_ARG(out);
|
186
|
+
GIT_ASSERT_ARG(repo);
|
187
|
+
GIT_ASSERT_ARG(branch_name);
|
188
|
+
GIT_ASSERT_ARG(remote_url);
|
189
|
+
GIT_ASSERT_ARG(id);
|
178
190
|
|
179
191
|
if (annotated_commit_init_from_id(out, repo, id, branch_name) < 0)
|
180
192
|
return -1;
|
@@ -192,14 +204,14 @@ int git_annotated_commit_from_fetchhead(
|
|
192
204
|
const git_oid *git_annotated_commit_id(
|
193
205
|
const git_annotated_commit *annotated_commit)
|
194
206
|
{
|
195
|
-
|
207
|
+
GIT_ASSERT_ARG_WITH_RETVAL(annotated_commit, NULL);
|
196
208
|
return git_commit_id(annotated_commit->commit);
|
197
209
|
}
|
198
210
|
|
199
211
|
const char *git_annotated_commit_ref(
|
200
212
|
const git_annotated_commit *annotated_commit)
|
201
213
|
{
|
202
|
-
|
214
|
+
GIT_ASSERT_ARG_WITH_RETVAL(annotated_commit, NULL);
|
203
215
|
return annotated_commit->ref_name;
|
204
216
|
}
|
205
217
|
|