rugged 0.28.3.1 → 0.28.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rugged/version.rb +1 -1
- data/vendor/libgit2/AUTHORS +1 -0
- data/vendor/libgit2/CMakeLists.txt +36 -16
- data/vendor/libgit2/COPYING +28 -0
- data/vendor/libgit2/cmake/Modules/EnableWarnings.cmake +5 -1
- data/vendor/libgit2/cmake/Modules/FindCoreFoundation.cmake +2 -2
- data/vendor/libgit2/cmake/Modules/FindGSSAPI.cmake +1 -1
- data/vendor/libgit2/cmake/Modules/FindGSSFramework.cmake +28 -0
- data/vendor/libgit2/cmake/Modules/FindPCRE.cmake +38 -0
- data/vendor/libgit2/cmake/Modules/FindPCRE2.cmake +37 -0
- data/vendor/libgit2/cmake/Modules/FindSecurity.cmake +2 -2
- data/vendor/libgit2/cmake/Modules/FindStatNsec.cmake +6 -0
- data/vendor/libgit2/cmake/Modules/PkgBuildConfig.cmake +110 -0
- data/vendor/libgit2/cmake/Modules/SelectGSSAPI.cmake +53 -0
- data/vendor/libgit2/cmake/Modules/SelectHTTPSBackend.cmake +124 -0
- data/vendor/libgit2/cmake/Modules/SelectHashes.cmake +66 -0
- data/vendor/libgit2/deps/http-parser/http_parser.c +11 -6
- data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +21 -0
- data/vendor/libgit2/deps/ntlmclient/compat.h +33 -0
- data/vendor/libgit2/deps/ntlmclient/crypt.h +64 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.c +120 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.h +18 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.c +145 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.h +18 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +130 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.h +21 -0
- data/vendor/libgit2/deps/ntlmclient/ntlm.c +1420 -0
- data/vendor/libgit2/deps/ntlmclient/ntlm.h +174 -0
- data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +320 -0
- data/vendor/libgit2/deps/ntlmclient/unicode.h +36 -0
- data/vendor/libgit2/deps/ntlmclient/unicode_builtin.c +445 -0
- data/vendor/libgit2/deps/ntlmclient/unicode_iconv.c +201 -0
- data/vendor/libgit2/deps/ntlmclient/utf8.h +1257 -0
- data/vendor/libgit2/deps/ntlmclient/util.c +21 -0
- data/vendor/libgit2/deps/ntlmclient/util.h +14 -0
- data/vendor/libgit2/deps/pcre/CMakeLists.txt +140 -0
- data/vendor/libgit2/deps/pcre/COPYING +5 -0
- data/vendor/libgit2/deps/pcre/cmake/COPYING-CMAKE-SCRIPTS +22 -0
- data/vendor/libgit2/deps/pcre/cmake/FindEditline.cmake +17 -0
- data/vendor/libgit2/deps/pcre/cmake/FindPackageHandleStandardArgs.cmake +58 -0
- data/vendor/libgit2/deps/pcre/cmake/FindReadline.cmake +29 -0
- data/vendor/libgit2/deps/pcre/config.h.in +57 -0
- data/vendor/libgit2/deps/pcre/pcre.h +641 -0
- data/vendor/libgit2/deps/pcre/pcre_byte_order.c +319 -0
- data/vendor/libgit2/deps/pcre/pcre_chartables.c +198 -0
- data/vendor/libgit2/deps/pcre/pcre_compile.c +9800 -0
- data/vendor/libgit2/deps/pcre/pcre_config.c +190 -0
- data/vendor/libgit2/deps/pcre/pcre_dfa_exec.c +3676 -0
- data/vendor/libgit2/deps/pcre/pcre_exec.c +7173 -0
- data/vendor/libgit2/deps/pcre/pcre_fullinfo.c +245 -0
- data/vendor/libgit2/deps/pcre/pcre_get.c +669 -0
- data/vendor/libgit2/deps/pcre/pcre_globals.c +86 -0
- data/vendor/libgit2/deps/pcre/pcre_internal.h +2787 -0
- data/vendor/libgit2/deps/pcre/pcre_jit_compile.c +11913 -0
- data/vendor/libgit2/deps/pcre/pcre_maketables.c +156 -0
- data/vendor/libgit2/deps/pcre/pcre_newline.c +210 -0
- data/vendor/libgit2/deps/pcre/pcre_ord2utf8.c +94 -0
- data/vendor/libgit2/deps/pcre/pcre_printint.c +834 -0
- data/vendor/libgit2/deps/pcre/pcre_refcount.c +92 -0
- data/vendor/libgit2/deps/pcre/pcre_string_utils.c +211 -0
- data/vendor/libgit2/deps/pcre/pcre_study.c +1686 -0
- data/vendor/libgit2/deps/pcre/pcre_tables.c +727 -0
- data/vendor/libgit2/deps/pcre/pcre_ucd.c +3644 -0
- data/vendor/libgit2/deps/pcre/pcre_valid_utf8.c +301 -0
- data/vendor/libgit2/deps/pcre/pcre_version.c +98 -0
- data/vendor/libgit2/deps/pcre/pcre_xclass.c +268 -0
- data/vendor/libgit2/deps/pcre/pcreposix.c +421 -0
- data/vendor/libgit2/deps/pcre/pcreposix.h +117 -0
- data/vendor/libgit2/deps/pcre/ucp.h +224 -0
- data/vendor/libgit2/deps/zlib/adler32.c +0 -7
- data/vendor/libgit2/deps/zlib/crc32.c +0 -7
- data/vendor/libgit2/include/git2.h +2 -0
- data/vendor/libgit2/include/git2/apply.h +22 -2
- data/vendor/libgit2/include/git2/attr.h +19 -12
- data/vendor/libgit2/include/git2/blame.h +2 -2
- data/vendor/libgit2/include/git2/blob.h +44 -12
- data/vendor/libgit2/include/git2/buffer.h +20 -14
- data/vendor/libgit2/include/git2/cert.h +135 -0
- data/vendor/libgit2/include/git2/checkout.h +46 -14
- data/vendor/libgit2/include/git2/cherrypick.h +3 -3
- data/vendor/libgit2/include/git2/clone.h +2 -2
- data/vendor/libgit2/include/git2/commit.h +23 -1
- data/vendor/libgit2/include/git2/common.h +7 -5
- data/vendor/libgit2/include/git2/config.h +12 -12
- data/vendor/libgit2/include/git2/cred.h +308 -0
- data/vendor/libgit2/include/git2/deprecated.h +243 -3
- data/vendor/libgit2/include/git2/describe.h +4 -4
- data/vendor/libgit2/include/git2/diff.h +16 -14
- data/vendor/libgit2/include/git2/filter.h +8 -0
- data/vendor/libgit2/include/git2/index.h +2 -1
- data/vendor/libgit2/include/git2/indexer.h +48 -4
- data/vendor/libgit2/include/git2/merge.h +6 -10
- data/vendor/libgit2/include/git2/net.h +0 -5
- data/vendor/libgit2/include/git2/object.h +2 -14
- data/vendor/libgit2/include/git2/odb.h +3 -2
- data/vendor/libgit2/include/git2/odb_backend.h +5 -4
- data/vendor/libgit2/include/git2/oid.h +1 -1
- data/vendor/libgit2/include/git2/pack.h +12 -1
- data/vendor/libgit2/include/git2/proxy.h +5 -3
- data/vendor/libgit2/include/git2/rebase.h +46 -2
- data/vendor/libgit2/include/git2/refs.h +19 -0
- data/vendor/libgit2/include/git2/remote.h +35 -12
- data/vendor/libgit2/include/git2/repository.h +24 -2
- data/vendor/libgit2/include/git2/revert.h +1 -1
- data/vendor/libgit2/include/git2/stash.h +3 -3
- data/vendor/libgit2/include/git2/status.h +25 -16
- data/vendor/libgit2/include/git2/submodule.h +20 -3
- data/vendor/libgit2/include/git2/sys/alloc.h +9 -9
- data/vendor/libgit2/include/git2/sys/cred.h +90 -0
- data/vendor/libgit2/include/git2/sys/odb_backend.h +48 -4
- data/vendor/libgit2/include/git2/sys/refdb_backend.h +57 -21
- data/vendor/libgit2/include/git2/sys/repository.h +5 -1
- data/vendor/libgit2/include/git2/sys/transport.h +2 -2
- data/vendor/libgit2/include/git2/tag.h +11 -2
- data/vendor/libgit2/include/git2/trace.h +2 -2
- data/vendor/libgit2/include/git2/transport.h +11 -340
- data/vendor/libgit2/include/git2/tree.h +1 -1
- data/vendor/libgit2/include/git2/types.h +4 -89
- data/vendor/libgit2/include/git2/version.h +2 -2
- data/vendor/libgit2/include/git2/worktree.h +5 -5
- data/vendor/libgit2/src/CMakeLists.txt +88 -222
- data/vendor/libgit2/src/alloc.c +2 -14
- data/vendor/libgit2/src/{stdalloc.c → allocators/stdalloc.c} +3 -4
- data/vendor/libgit2/src/{stdalloc.h → allocators/stdalloc.h} +4 -4
- data/vendor/libgit2/src/allocators/win32_crtdbg.c +118 -0
- data/vendor/libgit2/src/{transports/cred.h → allocators/win32_crtdbg.h} +5 -4
- data/vendor/libgit2/src/apply.c +60 -30
- data/vendor/libgit2/src/attr.c +70 -64
- data/vendor/libgit2/src/attr_file.c +189 -96
- data/vendor/libgit2/src/attr_file.h +9 -9
- data/vendor/libgit2/src/attrcache.c +44 -46
- data/vendor/libgit2/src/attrcache.h +2 -1
- data/vendor/libgit2/src/blame.c +17 -5
- data/vendor/libgit2/src/blame.h +1 -1
- data/vendor/libgit2/src/blame_git.c +21 -7
- data/vendor/libgit2/src/blob.c +81 -17
- data/vendor/libgit2/src/blob.h +2 -2
- data/vendor/libgit2/src/branch.c +29 -5
- data/vendor/libgit2/src/buffer.c +14 -7
- data/vendor/libgit2/src/cache.c +26 -33
- data/vendor/libgit2/src/cache.h +1 -1
- data/vendor/libgit2/src/cc-compat.h +5 -0
- data/vendor/libgit2/src/checkout.c +26 -16
- data/vendor/libgit2/src/cherrypick.c +9 -3
- data/vendor/libgit2/src/clone.c +29 -7
- data/vendor/libgit2/src/clone.h +4 -0
- data/vendor/libgit2/src/commit.c +69 -21
- data/vendor/libgit2/src/commit.h +6 -0
- data/vendor/libgit2/src/commit_list.c +28 -76
- data/vendor/libgit2/src/commit_list.h +2 -2
- data/vendor/libgit2/src/common.h +3 -75
- data/vendor/libgit2/src/config.c +31 -40
- data/vendor/libgit2/src/config.h +7 -6
- data/vendor/libgit2/src/config_backend.h +12 -0
- data/vendor/libgit2/src/config_cache.c +39 -39
- data/vendor/libgit2/src/config_entries.c +69 -99
- data/vendor/libgit2/src/config_entries.h +1 -0
- data/vendor/libgit2/src/config_file.c +337 -380
- data/vendor/libgit2/src/config_mem.c +12 -16
- data/vendor/libgit2/src/config_parse.c +49 -29
- data/vendor/libgit2/src/config_parse.h +13 -12
- data/vendor/libgit2/src/config_snapshot.c +206 -0
- data/vendor/libgit2/src/crlf.c +14 -14
- data/vendor/libgit2/src/describe.c +21 -20
- data/vendor/libgit2/src/diff.c +43 -58
- data/vendor/libgit2/src/diff.h +2 -1
- data/vendor/libgit2/src/diff_driver.c +37 -38
- data/vendor/libgit2/src/diff_file.c +9 -7
- data/vendor/libgit2/src/diff_file.h +1 -1
- data/vendor/libgit2/src/diff_generate.c +135 -85
- data/vendor/libgit2/src/diff_generate.h +2 -2
- data/vendor/libgit2/src/diff_parse.c +1 -1
- data/vendor/libgit2/src/diff_print.c +25 -13
- data/vendor/libgit2/src/diff_stats.c +1 -1
- data/vendor/libgit2/src/diff_tform.c +4 -4
- data/vendor/libgit2/src/errors.c +12 -22
- data/vendor/libgit2/src/errors.h +81 -0
- data/vendor/libgit2/src/features.h.in +9 -2
- data/vendor/libgit2/src/fetch.c +7 -2
- data/vendor/libgit2/src/fetchhead.c +1 -1
- data/vendor/libgit2/src/filebuf.c +6 -10
- data/vendor/libgit2/src/filebuf.h +2 -2
- data/vendor/libgit2/src/filter.c +16 -8
- data/vendor/libgit2/src/{fileops.c → futils.c} +21 -17
- data/vendor/libgit2/src/{fileops.h → futils.h} +5 -5
- data/vendor/libgit2/src/global.c +12 -40
- data/vendor/libgit2/src/global.h +0 -2
- data/vendor/libgit2/src/hash.c +61 -0
- data/vendor/libgit2/src/hash.h +19 -21
- data/vendor/libgit2/src/hash/sha1.h +38 -0
- data/vendor/libgit2/src/hash/{hash_collisiondetect.h → sha1/collisiondetect.c} +14 -17
- data/vendor/libgit2/src/hash/sha1/collisiondetect.h +19 -0
- data/vendor/libgit2/src/hash/{hash_common_crypto.h → sha1/common_crypto.c} +15 -19
- data/vendor/libgit2/src/hash/sha1/common_crypto.h +19 -0
- data/vendor/libgit2/src/hash/{hash_generic.c → sha1/generic.c} +22 -10
- data/vendor/libgit2/src/hash/{hash_generic.h → sha1/generic.h} +4 -14
- data/vendor/libgit2/src/hash/{hash_mbedtls.c → sha1/mbedtls.c} +15 -7
- data/vendor/libgit2/src/hash/{hash_mbedtls.h → sha1/mbedtls.h} +6 -11
- data/vendor/libgit2/src/hash/{hash_openssl.h → sha1/openssl.c} +14 -18
- data/vendor/libgit2/src/hash/sha1/openssl.h +19 -0
- data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/sha1.c +14 -3
- data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/sha1.h +0 -0
- data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/ubc_check.c +0 -0
- data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/ubc_check.h +0 -0
- data/vendor/libgit2/src/hash/{hash_win32.c → sha1/win32.c} +34 -24
- data/vendor/libgit2/src/hash/{hash_win32.h → sha1/win32.h} +6 -19
- data/vendor/libgit2/src/hashsig.c +1 -1
- data/vendor/libgit2/src/idxmap.c +91 -65
- data/vendor/libgit2/src/idxmap.h +151 -15
- data/vendor/libgit2/src/ignore.c +32 -38
- data/vendor/libgit2/src/index.c +66 -43
- data/vendor/libgit2/src/index.h +1 -1
- data/vendor/libgit2/src/indexer.c +69 -70
- data/vendor/libgit2/src/integer.h +39 -4
- data/vendor/libgit2/src/iterator.c +27 -22
- data/vendor/libgit2/src/map.h +1 -1
- data/vendor/libgit2/src/merge.c +58 -44
- data/vendor/libgit2/src/merge_driver.c +4 -4
- data/vendor/libgit2/src/merge_file.c +1 -1
- data/vendor/libgit2/src/mwindow.c +18 -23
- data/vendor/libgit2/src/mwindow.h +4 -4
- data/vendor/libgit2/src/net.c +184 -0
- data/vendor/libgit2/src/net.h +36 -0
- data/vendor/libgit2/src/netops.c +55 -165
- data/vendor/libgit2/src/netops.h +3 -25
- data/vendor/libgit2/src/notes.c +2 -2
- data/vendor/libgit2/src/object.c +2 -2
- data/vendor/libgit2/src/object.h +2 -0
- data/vendor/libgit2/src/odb.c +41 -23
- data/vendor/libgit2/src/odb.h +3 -2
- data/vendor/libgit2/src/odb_loose.c +17 -10
- data/vendor/libgit2/src/odb_mempack.c +10 -23
- data/vendor/libgit2/src/odb_pack.c +4 -4
- data/vendor/libgit2/src/offmap.c +43 -55
- data/vendor/libgit2/src/offmap.h +102 -24
- data/vendor/libgit2/src/oid.c +6 -1
- data/vendor/libgit2/src/oidmap.c +39 -57
- data/vendor/libgit2/src/oidmap.h +99 -19
- data/vendor/libgit2/src/pack-objects.c +25 -32
- data/vendor/libgit2/src/pack-objects.h +1 -1
- data/vendor/libgit2/src/pack.c +45 -47
- data/vendor/libgit2/src/pack.h +12 -14
- data/vendor/libgit2/src/parse.c +10 -0
- data/vendor/libgit2/src/parse.h +3 -3
- data/vendor/libgit2/src/patch.c +1 -1
- data/vendor/libgit2/src/patch_generate.c +2 -2
- data/vendor/libgit2/src/patch_parse.c +124 -31
- data/vendor/libgit2/src/path.c +95 -27
- data/vendor/libgit2/src/path.h +2 -0
- data/vendor/libgit2/src/pathspec.c +13 -13
- data/vendor/libgit2/src/pool.c +26 -22
- data/vendor/libgit2/src/pool.h +7 -7
- data/vendor/libgit2/src/posix.c +7 -7
- data/vendor/libgit2/src/posix.h +12 -1
- data/vendor/libgit2/src/proxy.c +7 -2
- data/vendor/libgit2/src/push.c +10 -5
- data/vendor/libgit2/src/reader.c +2 -2
- data/vendor/libgit2/src/rebase.c +66 -7
- data/vendor/libgit2/src/refdb.c +12 -0
- data/vendor/libgit2/src/refdb_fs.c +214 -165
- data/vendor/libgit2/src/reflog.c +11 -13
- data/vendor/libgit2/src/refs.c +24 -18
- data/vendor/libgit2/src/refspec.c +9 -16
- data/vendor/libgit2/src/regexp.c +221 -0
- data/vendor/libgit2/src/regexp.h +97 -0
- data/vendor/libgit2/src/remote.c +50 -52
- data/vendor/libgit2/src/remote.h +2 -2
- data/vendor/libgit2/src/repository.c +115 -100
- data/vendor/libgit2/src/repository.h +49 -40
- data/vendor/libgit2/src/revert.c +8 -3
- data/vendor/libgit2/src/revparse.c +18 -19
- data/vendor/libgit2/src/revwalk.c +63 -30
- data/vendor/libgit2/src/revwalk.h +20 -0
- data/vendor/libgit2/src/settings.c +5 -0
- data/vendor/libgit2/src/sortedcache.c +12 -26
- data/vendor/libgit2/src/sortedcache.h +1 -1
- data/vendor/libgit2/src/stash.c +45 -65
- data/vendor/libgit2/src/status.c +15 -9
- data/vendor/libgit2/src/streams/openssl.c +20 -0
- data/vendor/libgit2/src/streams/socket.c +2 -2
- data/vendor/libgit2/src/strmap.c +37 -84
- data/vendor/libgit2/src/strmap.h +105 -33
- data/vendor/libgit2/src/submodule.c +102 -70
- data/vendor/libgit2/src/submodule.h +1 -1
- data/vendor/libgit2/src/sysdir.c +11 -1
- data/vendor/libgit2/src/tag.c +10 -2
- data/vendor/libgit2/src/trace.c +1 -1
- data/vendor/libgit2/src/trace.h +2 -2
- data/vendor/libgit2/src/trailer.c +46 -32
- data/vendor/libgit2/src/transaction.c +10 -9
- data/vendor/libgit2/src/transports/auth.c +10 -9
- data/vendor/libgit2/src/transports/auth.h +11 -4
- data/vendor/libgit2/src/transports/auth_negotiate.c +23 -9
- data/vendor/libgit2/src/transports/auth_negotiate.h +2 -2
- data/vendor/libgit2/src/transports/auth_ntlm.c +223 -0
- data/vendor/libgit2/src/transports/auth_ntlm.h +35 -0
- data/vendor/libgit2/src/transports/cred.c +6 -6
- data/vendor/libgit2/src/transports/git.c +11 -16
- data/vendor/libgit2/src/transports/http.c +419 -276
- data/vendor/libgit2/src/transports/http.h +1 -1
- data/vendor/libgit2/src/transports/local.c +9 -9
- data/vendor/libgit2/src/transports/smart.c +17 -17
- data/vendor/libgit2/src/transports/smart.h +2 -2
- data/vendor/libgit2/src/transports/smart_protocol.c +36 -60
- data/vendor/libgit2/src/transports/ssh.c +46 -36
- data/vendor/libgit2/src/transports/winhttp.c +231 -207
- data/vendor/libgit2/src/tree-cache.c +14 -7
- data/vendor/libgit2/src/tree.c +10 -24
- data/vendor/libgit2/src/unix/map.c +1 -1
- data/vendor/libgit2/src/unix/posix.h +1 -11
- data/vendor/libgit2/src/userdiff.h +3 -1
- data/vendor/libgit2/src/util.c +51 -53
- data/vendor/libgit2/src/util.h +16 -21
- data/vendor/libgit2/src/wildmatch.c +320 -0
- data/vendor/libgit2/src/wildmatch.h +23 -0
- data/vendor/libgit2/src/win32/map.c +3 -5
- data/vendor/libgit2/src/win32/path_w32.c +12 -2
- data/vendor/libgit2/src/win32/path_w32.h +0 -29
- data/vendor/libgit2/src/win32/posix.h +1 -4
- data/vendor/libgit2/src/win32/posix_w32.c +40 -5
- data/vendor/libgit2/src/win32/precompiled.h +0 -2
- data/vendor/libgit2/src/win32/thread.c +5 -10
- data/vendor/libgit2/src/win32/w32_buffer.c +7 -3
- data/vendor/libgit2/src/win32/w32_common.h +39 -0
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.c +0 -93
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +0 -2
- data/vendor/libgit2/src/win32/w32_stack.c +4 -9
- data/vendor/libgit2/src/win32/w32_stack.h +3 -3
- data/vendor/libgit2/src/win32/w32_util.c +31 -0
- data/vendor/libgit2/src/win32/w32_util.h +6 -32
- data/vendor/libgit2/src/worktree.c +36 -22
- data/vendor/libgit2/src/xdiff/xdiffi.c +1 -1
- data/vendor/libgit2/src/xdiff/xmerge.c +12 -0
- data/vendor/libgit2/src/xdiff/xpatience.c +3 -0
- metadata +98 -34
- data/vendor/libgit2/deps/regex/CMakeLists.txt +0 -2
- data/vendor/libgit2/deps/regex/COPYING +0 -502
- data/vendor/libgit2/deps/regex/config.h +0 -7
- data/vendor/libgit2/deps/regex/regcomp.c +0 -3857
- data/vendor/libgit2/deps/regex/regex.c +0 -92
- data/vendor/libgit2/deps/regex/regex.h +0 -582
- data/vendor/libgit2/deps/regex/regex_internal.c +0 -1744
- data/vendor/libgit2/deps/regex/regex_internal.h +0 -819
- data/vendor/libgit2/deps/regex/regexec.c +0 -4369
- data/vendor/libgit2/include/git2/inttypes.h +0 -309
- data/vendor/libgit2/include/git2/sys/time.h +0 -31
- data/vendor/libgit2/libgit2.pc.in +0 -13
- data/vendor/libgit2/src/fnmatch.c +0 -248
- data/vendor/libgit2/src/fnmatch.h +0 -48
@@ -8,10 +8,10 @@
|
|
8
8
|
#define INCLUDE_integer_h__
|
9
9
|
|
10
10
|
/** @return true if p fits into the range of a size_t */
|
11
|
-
GIT_INLINE(int) git__is_sizet(
|
11
|
+
GIT_INLINE(int) git__is_sizet(int64_t p)
|
12
12
|
{
|
13
13
|
size_t r = (size_t)p;
|
14
|
-
return p == (
|
14
|
+
return p == (int64_t)r;
|
15
15
|
}
|
16
16
|
|
17
17
|
/** @return true if p fits into the range of an ssize_t */
|
@@ -21,6 +21,13 @@ GIT_INLINE(int) git__is_ssizet(size_t p)
|
|
21
21
|
return p == (size_t)r;
|
22
22
|
}
|
23
23
|
|
24
|
+
/** @return true if p fits into the range of a uint16_t */
|
25
|
+
GIT_INLINE(int) git__is_uint16(size_t p)
|
26
|
+
{
|
27
|
+
uint16_t r = (uint16_t)p;
|
28
|
+
return p == (size_t)r;
|
29
|
+
}
|
30
|
+
|
24
31
|
/** @return true if p fits into the range of a uint32_t */
|
25
32
|
GIT_INLINE(int) git__is_uint32(size_t p)
|
26
33
|
{
|
@@ -29,10 +36,10 @@ GIT_INLINE(int) git__is_uint32(size_t p)
|
|
29
36
|
}
|
30
37
|
|
31
38
|
/** @return true if p fits into the range of an unsigned long */
|
32
|
-
GIT_INLINE(int) git__is_ulong(
|
39
|
+
GIT_INLINE(int) git__is_ulong(int64_t p)
|
33
40
|
{
|
34
41
|
unsigned long r = (unsigned long)p;
|
35
|
-
return p == (
|
42
|
+
return p == (int64_t)r;
|
36
43
|
}
|
37
44
|
|
38
45
|
/** @return true if p fits into the range of an int */
|
@@ -65,15 +72,25 @@ GIT_INLINE(int) git__is_int(long long p)
|
|
65
72
|
# error compiler has add with overflow intrinsics but SIZE_MAX is unknown
|
66
73
|
# endif
|
67
74
|
|
75
|
+
# define git__add_int_overflow(out, one, two) \
|
76
|
+
__builtin_sadd_overflow(one, two, out)
|
77
|
+
# define git__sub_int_overflow(out, one, two) \
|
78
|
+
__builtin_ssub_overflow(one, two, out)
|
79
|
+
|
68
80
|
/* Use Microsoft's safe integer handling functions where available */
|
69
81
|
#elif defined(_MSC_VER)
|
70
82
|
|
83
|
+
# define ENABLE_INTSAFE_SIGNED_FUNCTIONS
|
71
84
|
# include <intsafe.h>
|
72
85
|
|
73
86
|
# define git__add_sizet_overflow(out, one, two) \
|
74
87
|
(SizeTAdd(one, two, out) != S_OK)
|
75
88
|
# define git__multiply_sizet_overflow(out, one, two) \
|
76
89
|
(SizeTMult(one, two, out) != S_OK)
|
90
|
+
#define git__add_int_overflow(out, one, two) \
|
91
|
+
(IntAdd(one, two, out) != S_OK)
|
92
|
+
#define git__sub_int_overflow(out, one, two) \
|
93
|
+
(IntSub(one, two, out) != S_OK)
|
77
94
|
|
78
95
|
#else
|
79
96
|
|
@@ -101,6 +118,24 @@ GIT_INLINE(bool) git__multiply_sizet_overflow(size_t *out, size_t one, size_t tw
|
|
101
118
|
return false;
|
102
119
|
}
|
103
120
|
|
121
|
+
GIT_INLINE(bool) git__add_int_overflow(int *out, int one, int two)
|
122
|
+
{
|
123
|
+
if ((two > 0 && one > (INT_MAX - two)) ||
|
124
|
+
(two < 0 && one < (INT_MIN - two)))
|
125
|
+
return true;
|
126
|
+
*out = one + two;
|
127
|
+
return false;
|
128
|
+
}
|
129
|
+
|
130
|
+
GIT_INLINE(bool) git__sub_int_overflow(int *out, int one, int two)
|
131
|
+
{
|
132
|
+
if ((two > 0 && one < (INT_MIN + two)) ||
|
133
|
+
(two < 0 && one > (INT_MAX + two)))
|
134
|
+
return true;
|
135
|
+
*out = one - two;
|
136
|
+
return false;
|
137
|
+
}
|
138
|
+
|
104
139
|
#endif
|
105
140
|
|
106
141
|
#endif
|
@@ -145,7 +145,7 @@ static int iterator_init_common(
|
|
145
145
|
(iter->flags & GIT_ITERATOR_PRECOMPOSE_UNICODE) == 0 &&
|
146
146
|
(iter->flags & GIT_ITERATOR_DONT_PRECOMPOSE_UNICODE) == 0) {
|
147
147
|
|
148
|
-
if (
|
148
|
+
if (git_repository__configmap_lookup(&precompose, repo, GIT_CONFIGMAP_PRECOMPOSE) < 0)
|
149
149
|
git_error_clear();
|
150
150
|
else if (precompose)
|
151
151
|
iter->flags |= GIT_ITERATOR_PRECOMPOSE_UNICODE;
|
@@ -543,8 +543,6 @@ static int tree_iterator_frame_init(
|
|
543
543
|
new_frame = git_array_alloc(iter->frames);
|
544
544
|
GIT_ERROR_CHECK_ALLOC(new_frame);
|
545
545
|
|
546
|
-
memset(new_frame, 0, sizeof(tree_iterator_frame));
|
547
|
-
|
548
546
|
if ((error = git_tree_dup(&dup, tree)) < 0)
|
549
547
|
goto done;
|
550
548
|
|
@@ -552,19 +550,22 @@ static int tree_iterator_frame_init(
|
|
552
550
|
new_frame->tree = dup;
|
553
551
|
|
554
552
|
if (frame_entry &&
|
555
|
-
|
553
|
+
(error = tree_iterator_compute_path(&new_frame->path, frame_entry)) < 0)
|
556
554
|
goto done;
|
557
555
|
|
558
556
|
cmp = iterator__ignore_case(&iter->base) ?
|
559
557
|
tree_iterator_entry_sort_icase : NULL;
|
560
558
|
|
561
|
-
if ((error = git_vector_init(
|
562
|
-
|
559
|
+
if ((error = git_vector_init(&new_frame->entries,
|
560
|
+
dup->entries.size, cmp)) < 0)
|
563
561
|
goto done;
|
564
562
|
|
565
563
|
git_array_foreach(dup->entries, i, tree_entry) {
|
566
|
-
new_entry = git_pool_malloc(&iter->entry_pool, 1)
|
567
|
-
|
564
|
+
if ((new_entry = git_pool_malloc(&iter->entry_pool, 1)) == NULL) {
|
565
|
+
git_error_set_oom();
|
566
|
+
error = -1;
|
567
|
+
goto done;
|
568
|
+
}
|
568
569
|
|
569
570
|
new_entry->tree_entry = tree_entry;
|
570
571
|
new_entry->parent_path = new_frame->path.ptr;
|
@@ -1521,7 +1522,7 @@ static void filesystem_iterator_set_current(
|
|
1521
1522
|
static int filesystem_iterator_current(
|
1522
1523
|
const git_index_entry **out, git_iterator *i)
|
1523
1524
|
{
|
1524
|
-
filesystem_iterator *iter = (filesystem_iterator
|
1525
|
+
filesystem_iterator *iter = GIT_CONTAINER_OF(i, filesystem_iterator, base);
|
1525
1526
|
|
1526
1527
|
if (!iterator__has_been_accessed(i))
|
1527
1528
|
return iter->base.cb->advance(out, i);
|
@@ -1568,7 +1569,7 @@ done:
|
|
1568
1569
|
static int filesystem_iterator_advance(
|
1569
1570
|
const git_index_entry **out, git_iterator *i)
|
1570
1571
|
{
|
1571
|
-
filesystem_iterator *iter = (filesystem_iterator
|
1572
|
+
filesystem_iterator *iter = GIT_CONTAINER_OF(i, filesystem_iterator, base);
|
1572
1573
|
bool is_dir;
|
1573
1574
|
int error = 0;
|
1574
1575
|
|
@@ -1627,7 +1628,7 @@ static int filesystem_iterator_advance(
|
|
1627
1628
|
static int filesystem_iterator_advance_into(
|
1628
1629
|
const git_index_entry **out, git_iterator *i)
|
1629
1630
|
{
|
1630
|
-
filesystem_iterator *iter = (filesystem_iterator
|
1631
|
+
filesystem_iterator *iter = GIT_CONTAINER_OF(i, filesystem_iterator, base);
|
1631
1632
|
filesystem_iterator_frame *frame;
|
1632
1633
|
filesystem_iterator_entry *prev_entry;
|
1633
1634
|
int error;
|
@@ -1664,7 +1665,7 @@ static int filesystem_iterator_advance_into(
|
|
1664
1665
|
|
1665
1666
|
int git_iterator_current_workdir_path(git_buf **out, git_iterator *i)
|
1666
1667
|
{
|
1667
|
-
filesystem_iterator *iter = (filesystem_iterator
|
1668
|
+
filesystem_iterator *iter = GIT_CONTAINER_OF(i, filesystem_iterator, base);
|
1668
1669
|
const git_index_entry *entry;
|
1669
1670
|
|
1670
1671
|
if (i->type != GIT_ITERATOR_TYPE_FS &&
|
@@ -1724,15 +1725,19 @@ GIT_INLINE(bool) filesystem_iterator_current_is_ignored(
|
|
1724
1725
|
|
1725
1726
|
bool git_iterator_current_is_ignored(git_iterator *i)
|
1726
1727
|
{
|
1728
|
+
filesystem_iterator *iter = NULL;
|
1729
|
+
|
1727
1730
|
if (i->type != GIT_ITERATOR_TYPE_WORKDIR)
|
1728
1731
|
return false;
|
1729
1732
|
|
1730
|
-
|
1733
|
+
iter = GIT_CONTAINER_OF(i, filesystem_iterator, base);
|
1734
|
+
|
1735
|
+
return filesystem_iterator_current_is_ignored(iter);
|
1731
1736
|
}
|
1732
1737
|
|
1733
1738
|
bool git_iterator_current_tree_is_ignored(git_iterator *i)
|
1734
1739
|
{
|
1735
|
-
filesystem_iterator *iter = (filesystem_iterator
|
1740
|
+
filesystem_iterator *iter = GIT_CONTAINER_OF(i, filesystem_iterator, base);
|
1736
1741
|
filesystem_iterator_frame *frame;
|
1737
1742
|
|
1738
1743
|
if (i->type != GIT_ITERATOR_TYPE_WORKDIR)
|
@@ -1747,7 +1752,7 @@ static int filesystem_iterator_advance_over(
|
|
1747
1752
|
git_iterator_status_t *status,
|
1748
1753
|
git_iterator *i)
|
1749
1754
|
{
|
1750
|
-
filesystem_iterator *iter = (filesystem_iterator
|
1755
|
+
filesystem_iterator *iter = GIT_CONTAINER_OF(i, filesystem_iterator, base);
|
1751
1756
|
filesystem_iterator_frame *current_frame;
|
1752
1757
|
filesystem_iterator_entry *current_entry;
|
1753
1758
|
const git_index_entry *entry = NULL;
|
@@ -1866,7 +1871,7 @@ static int filesystem_iterator_init(filesystem_iterator *iter)
|
|
1866
1871
|
|
1867
1872
|
static int filesystem_iterator_reset(git_iterator *i)
|
1868
1873
|
{
|
1869
|
-
filesystem_iterator *iter = (filesystem_iterator
|
1874
|
+
filesystem_iterator *iter = GIT_CONTAINER_OF(i, filesystem_iterator, base);
|
1870
1875
|
|
1871
1876
|
filesystem_iterator_clear(iter);
|
1872
1877
|
return filesystem_iterator_init(iter);
|
@@ -1874,7 +1879,7 @@ static int filesystem_iterator_reset(git_iterator *i)
|
|
1874
1879
|
|
1875
1880
|
static void filesystem_iterator_free(git_iterator *i)
|
1876
1881
|
{
|
1877
|
-
filesystem_iterator *iter = (filesystem_iterator
|
1882
|
+
filesystem_iterator *iter = GIT_CONTAINER_OF(i, filesystem_iterator, base);
|
1878
1883
|
git__free(iter->root);
|
1879
1884
|
git_buf_dispose(&iter->current_path);
|
1880
1885
|
git_tree_free(iter->tree);
|
@@ -2083,7 +2088,7 @@ static int index_iterator_skip_pseudotree(index_iterator *iter)
|
|
2083
2088
|
static int index_iterator_advance(
|
2084
2089
|
const git_index_entry **out, git_iterator *i)
|
2085
2090
|
{
|
2086
|
-
index_iterator *iter = (index_iterator
|
2091
|
+
index_iterator *iter = GIT_CONTAINER_OF(i, index_iterator, base);
|
2087
2092
|
const git_index_entry *entry = NULL;
|
2088
2093
|
bool is_submodule;
|
2089
2094
|
int error = 0;
|
@@ -2156,7 +2161,7 @@ static int index_iterator_advance(
|
|
2156
2161
|
static int index_iterator_advance_into(
|
2157
2162
|
const git_index_entry **out, git_iterator *i)
|
2158
2163
|
{
|
2159
|
-
index_iterator *iter = (index_iterator
|
2164
|
+
index_iterator *iter = GIT_CONTAINER_OF(i, index_iterator, base);
|
2160
2165
|
|
2161
2166
|
if (! S_ISDIR(iter->tree_entry.mode)) {
|
2162
2167
|
if (out)
|
@@ -2174,7 +2179,7 @@ static int index_iterator_advance_over(
|
|
2174
2179
|
git_iterator_status_t *status,
|
2175
2180
|
git_iterator *i)
|
2176
2181
|
{
|
2177
|
-
index_iterator *iter = (index_iterator
|
2182
|
+
index_iterator *iter = GIT_CONTAINER_OF(i, index_iterator, base);
|
2178
2183
|
const git_index_entry *entry;
|
2179
2184
|
int error;
|
2180
2185
|
|
@@ -2203,7 +2208,7 @@ static int index_iterator_init(index_iterator *iter)
|
|
2203
2208
|
|
2204
2209
|
static int index_iterator_reset(git_iterator *i)
|
2205
2210
|
{
|
2206
|
-
index_iterator *iter = (index_iterator
|
2211
|
+
index_iterator *iter = GIT_CONTAINER_OF(i, index_iterator, base);
|
2207
2212
|
|
2208
2213
|
index_iterator_clear(iter);
|
2209
2214
|
return index_iterator_init(iter);
|
@@ -2211,7 +2216,7 @@ static int index_iterator_reset(git_iterator *i)
|
|
2211
2216
|
|
2212
2217
|
static void index_iterator_free(git_iterator *i)
|
2213
2218
|
{
|
2214
|
-
index_iterator *iter = (index_iterator
|
2219
|
+
index_iterator *iter = GIT_CONTAINER_OF(i, index_iterator, base);
|
2215
2220
|
|
2216
2221
|
git_index_snapshot_release(&iter->entries, iter->base.index);
|
2217
2222
|
git_buf_dispose(&iter->tree_buf);
|
data/vendor/libgit2/src/map.h
CHANGED
@@ -40,7 +40,7 @@ typedef struct { /* memory mapped buffer */
|
|
40
40
|
assert((prot & GIT_PROT_WRITE) || (prot & GIT_PROT_READ)); \
|
41
41
|
assert((flags & GIT_MAP_FIXED) == 0); } while (0)
|
42
42
|
|
43
|
-
extern int p_mmap(git_map *out, size_t len, int prot, int flags, int fd,
|
43
|
+
extern int p_mmap(git_map *out, size_t len, int prot, int flags, int fd, off64_t offset);
|
44
44
|
extern int p_munmap(git_map *map);
|
45
45
|
|
46
46
|
#endif
|
data/vendor/libgit2/src/merge.c
CHANGED
@@ -310,46 +310,55 @@ static int interesting(git_pqueue *list)
|
|
310
310
|
return 0;
|
311
311
|
}
|
312
312
|
|
313
|
-
static
|
313
|
+
static int clear_commit_marks_1(git_commit_list **plist,
|
314
314
|
git_commit_list_node *commit, unsigned int mark)
|
315
315
|
{
|
316
316
|
while (commit) {
|
317
317
|
unsigned int i;
|
318
318
|
|
319
319
|
if (!(mark & commit->flags))
|
320
|
-
return;
|
320
|
+
return 0;
|
321
321
|
|
322
322
|
commit->flags &= ~mark;
|
323
323
|
|
324
324
|
for (i = 1; i < commit->out_degree; i++) {
|
325
325
|
git_commit_list_node *p = commit->parents[i];
|
326
|
-
git_commit_list_insert(p, plist)
|
326
|
+
if (git_commit_list_insert(p, plist) == NULL)
|
327
|
+
return -1;
|
327
328
|
}
|
328
329
|
|
329
330
|
commit = commit->out_degree ? commit->parents[0] : NULL;
|
330
331
|
}
|
332
|
+
|
333
|
+
return 0;
|
331
334
|
}
|
332
335
|
|
333
|
-
static
|
336
|
+
static int clear_commit_marks_many(git_vector *commits, unsigned int mark)
|
334
337
|
{
|
335
338
|
git_commit_list *list = NULL;
|
336
339
|
git_commit_list_node *c;
|
337
340
|
unsigned int i;
|
338
341
|
|
339
342
|
git_vector_foreach(commits, i, c) {
|
340
|
-
git_commit_list_insert(c, &list)
|
343
|
+
if (git_commit_list_insert(c, &list) == NULL)
|
344
|
+
return -1;
|
341
345
|
}
|
342
346
|
|
343
347
|
while (list)
|
344
|
-
clear_commit_marks_1(&list, git_commit_list_pop(&list), mark)
|
348
|
+
if (clear_commit_marks_1(&list, git_commit_list_pop(&list), mark) < 0)
|
349
|
+
return -1;
|
350
|
+
return 0;
|
345
351
|
}
|
346
352
|
|
347
|
-
static
|
353
|
+
static int clear_commit_marks(git_commit_list_node *commit, unsigned int mark)
|
348
354
|
{
|
349
355
|
git_commit_list *list = NULL;
|
350
|
-
git_commit_list_insert(commit, &list)
|
356
|
+
if (git_commit_list_insert(commit, &list) == NULL)
|
357
|
+
return -1;
|
351
358
|
while (list)
|
352
|
-
clear_commit_marks_1(&list, git_commit_list_pop(&list), mark)
|
359
|
+
if (clear_commit_marks_1(&list, git_commit_list_pop(&list), mark) < 0)
|
360
|
+
return -1;
|
361
|
+
return 0;
|
353
362
|
}
|
354
363
|
|
355
364
|
static int paint_down_to_common(
|
@@ -466,10 +475,11 @@ static int remove_redundant(git_revwalk *walk, git_vector *commits)
|
|
466
475
|
redundant[filled_index[j]] = 1;
|
467
476
|
}
|
468
477
|
|
469
|
-
clear_commit_marks(commit, ALL_FLAGS);
|
470
|
-
clear_commit_marks_many(&work, ALL_FLAGS);
|
471
|
-
|
472
478
|
git_commit_list_free(&common);
|
479
|
+
|
480
|
+
if ((error = clear_commit_marks(commit, ALL_FLAGS)) < 0 ||
|
481
|
+
(error = clear_commit_marks_many(&work, ALL_FLAGS)) < 0)
|
482
|
+
goto done;
|
473
483
|
}
|
474
484
|
|
475
485
|
for (i = 0; i < commits->length; ++i) {
|
@@ -531,10 +541,9 @@ int git_merge__bases_many(git_commit_list **out, git_revwalk *walk, git_commit_l
|
|
531
541
|
while (result)
|
532
542
|
git_vector_insert(&redundant, git_commit_list_pop(&result));
|
533
543
|
|
534
|
-
clear_commit_marks(one, ALL_FLAGS)
|
535
|
-
|
536
|
-
|
537
|
-
if ((error = remove_redundant(walk, &redundant)) < 0) {
|
544
|
+
if ((error = clear_commit_marks(one, ALL_FLAGS)) < 0 ||
|
545
|
+
(error = clear_commit_marks_many(twos, ALL_FLAGS)) < 0 ||
|
546
|
+
(error = remove_redundant(walk, &redundant)) < 0) {
|
538
547
|
git_vector_free(&redundant);
|
539
548
|
return error;
|
540
549
|
}
|
@@ -867,7 +876,7 @@ static int merge_conflict_invoke_driver(
|
|
867
876
|
|
868
877
|
git_oid_cpy(&result->id, &oid);
|
869
878
|
result->mode = mode;
|
870
|
-
result->file_size = buf.size;
|
879
|
+
result->file_size = (uint32_t)buf.size;
|
871
880
|
|
872
881
|
result->path = git_pool_strdup(&diff_list->pool, path);
|
873
882
|
GIT_ERROR_CHECK_ALLOC(result->path);
|
@@ -1015,7 +1024,7 @@ static int index_entry_similarity_calc(
|
|
1015
1024
|
{
|
1016
1025
|
git_blob *blob;
|
1017
1026
|
git_diff_file diff_file = {{{0}}};
|
1018
|
-
|
1027
|
+
git_object_size_t blobsize;
|
1019
1028
|
int error;
|
1020
1029
|
|
1021
1030
|
*out = NULL;
|
@@ -1104,14 +1113,12 @@ static void deletes_by_oid_free(git_oidmap *map) {
|
|
1104
1113
|
git_oidmap_free(map);
|
1105
1114
|
}
|
1106
1115
|
|
1107
|
-
static int deletes_by_oid_enqueue(git_oidmap *map, git_pool* pool, const git_oid *id, size_t idx)
|
1108
|
-
|
1116
|
+
static int deletes_by_oid_enqueue(git_oidmap *map, git_pool* pool, const git_oid *id, size_t idx)
|
1117
|
+
{
|
1109
1118
|
deletes_by_oid_queue *queue;
|
1110
1119
|
size_t *array_entry;
|
1111
|
-
int error;
|
1112
1120
|
|
1113
|
-
|
1114
|
-
if (!git_oidmap_valid_index(map, pos)) {
|
1121
|
+
if ((queue = git_oidmap_get(map, id)) == NULL) {
|
1115
1122
|
queue = git_pool_malloc(pool, sizeof(deletes_by_oid_queue));
|
1116
1123
|
GIT_ERROR_CHECK_ALLOC(queue);
|
1117
1124
|
|
@@ -1119,11 +1126,9 @@ static int deletes_by_oid_enqueue(git_oidmap *map, git_pool* pool, const git_oid
|
|
1119
1126
|
queue->next_pos = 0;
|
1120
1127
|
queue->first_entry = idx;
|
1121
1128
|
|
1122
|
-
|
1123
|
-
if (error < 0)
|
1129
|
+
if (git_oidmap_set(map, id, queue) < 0)
|
1124
1130
|
return -1;
|
1125
1131
|
} else {
|
1126
|
-
queue = git_oidmap_value_at(map, pos);
|
1127
1132
|
array_entry = git_array_alloc(queue->arr);
|
1128
1133
|
GIT_ERROR_CHECK_ALLOC(array_entry);
|
1129
1134
|
*array_entry = idx;
|
@@ -1132,18 +1137,14 @@ static int deletes_by_oid_enqueue(git_oidmap *map, git_pool* pool, const git_oid
|
|
1132
1137
|
return 0;
|
1133
1138
|
}
|
1134
1139
|
|
1135
|
-
static int deletes_by_oid_dequeue(size_t *idx, git_oidmap *map, const git_oid *id)
|
1136
|
-
|
1140
|
+
static int deletes_by_oid_dequeue(size_t *idx, git_oidmap *map, const git_oid *id)
|
1141
|
+
{
|
1137
1142
|
deletes_by_oid_queue *queue;
|
1138
1143
|
size_t *array_entry;
|
1139
1144
|
|
1140
|
-
|
1141
|
-
|
1142
|
-
if (!git_oidmap_valid_index(map, pos))
|
1145
|
+
if ((queue = git_oidmap_get(map, id)) == NULL)
|
1143
1146
|
return GIT_ENOTFOUND;
|
1144
1147
|
|
1145
|
-
queue = git_oidmap_value_at(map, pos);
|
1146
|
-
|
1147
1148
|
if (queue->next_pos == 0) {
|
1148
1149
|
*idx = queue->first_entry;
|
1149
1150
|
} else {
|
@@ -1168,8 +1169,8 @@ static int merge_diff_mark_similarity_exact(
|
|
1168
1169
|
git_oidmap *ours_deletes_by_oid = NULL, *theirs_deletes_by_oid = NULL;
|
1169
1170
|
int error = 0;
|
1170
1171
|
|
1171
|
-
if (
|
1172
|
-
|
1172
|
+
if (git_oidmap_new(&ours_deletes_by_oid) < 0 ||
|
1173
|
+
git_oidmap_new(&theirs_deletes_by_oid) < 0) {
|
1173
1174
|
error = -1;
|
1174
1175
|
goto done;
|
1175
1176
|
}
|
@@ -2430,7 +2431,7 @@ static int write_merge_head(
|
|
2430
2431
|
assert(repo && heads);
|
2431
2432
|
|
2432
2433
|
if ((error = git_buf_joinpath(&file_path, repo->gitdir, GIT_MERGE_HEAD_FILE)) < 0 ||
|
2433
|
-
(error = git_filebuf_open(&file, file_path.ptr,
|
2434
|
+
(error = git_filebuf_open(&file, file_path.ptr, GIT_FILEBUF_CREATE_LEADING_DIRS, GIT_MERGE_FILE_MODE)) < 0)
|
2434
2435
|
goto cleanup;
|
2435
2436
|
|
2436
2437
|
for (i = 0; i < heads_len; i++) {
|
@@ -2458,7 +2459,7 @@ static int write_merge_mode(git_repository *repo)
|
|
2458
2459
|
assert(repo);
|
2459
2460
|
|
2460
2461
|
if ((error = git_buf_joinpath(&file_path, repo->gitdir, GIT_MERGE_MODE_FILE)) < 0 ||
|
2461
|
-
(error = git_filebuf_open(&file, file_path.ptr,
|
2462
|
+
(error = git_filebuf_open(&file, file_path.ptr, GIT_FILEBUF_CREATE_LEADING_DIRS, GIT_MERGE_FILE_MODE)) < 0)
|
2462
2463
|
goto cleanup;
|
2463
2464
|
|
2464
2465
|
if ((error = git_filebuf_write(&file, "no-ff", 5)) < 0)
|
@@ -2689,7 +2690,7 @@ static int write_merge_msg(
|
|
2689
2690
|
entries[i].merge_head = heads[i];
|
2690
2691
|
|
2691
2692
|
if ((error = git_buf_joinpath(&file_path, repo->gitdir, GIT_MERGE_MSG_FILE)) < 0 ||
|
2692
|
-
(error = git_filebuf_open(&file, file_path.ptr,
|
2693
|
+
(error = git_filebuf_open(&file, file_path.ptr, GIT_FILEBUF_CREATE_LEADING_DIRS, GIT_MERGE_FILE_MODE)) < 0 ||
|
2693
2694
|
(error = git_filebuf_write(&file, "Merge ", 6)) < 0)
|
2694
2695
|
goto cleanup;
|
2695
2696
|
|
@@ -3120,9 +3121,6 @@ static int merge_heads(
|
|
3120
3121
|
*ancestor_head_out = NULL;
|
3121
3122
|
*our_head_out = NULL;
|
3122
3123
|
|
3123
|
-
if ((error = git_repository__ensure_not_bare(repo, "merge")) < 0)
|
3124
|
-
goto done;
|
3125
|
-
|
3126
3124
|
if ((error = git_annotated_commit_from_ref(&our_head, repo, our_ref)) < 0)
|
3127
3125
|
goto done;
|
3128
3126
|
|
@@ -3333,24 +3331,40 @@ done:
|
|
3333
3331
|
return error;
|
3334
3332
|
}
|
3335
3333
|
|
3336
|
-
int
|
3334
|
+
int git_merge_options_init(git_merge_options *opts, unsigned int version)
|
3337
3335
|
{
|
3338
3336
|
GIT_INIT_STRUCTURE_FROM_TEMPLATE(
|
3339
3337
|
opts, version, git_merge_options, GIT_MERGE_OPTIONS_INIT);
|
3340
3338
|
return 0;
|
3341
3339
|
}
|
3342
3340
|
|
3343
|
-
int
|
3341
|
+
int git_merge_init_options(git_merge_options *opts, unsigned int version)
|
3342
|
+
{
|
3343
|
+
return git_merge_options_init(opts, version);
|
3344
|
+
}
|
3345
|
+
|
3346
|
+
int git_merge_file_input_init(git_merge_file_input *input, unsigned int version)
|
3344
3347
|
{
|
3345
3348
|
GIT_INIT_STRUCTURE_FROM_TEMPLATE(
|
3346
3349
|
input, version, git_merge_file_input, GIT_MERGE_FILE_INPUT_INIT);
|
3347
3350
|
return 0;
|
3348
3351
|
}
|
3349
3352
|
|
3350
|
-
int
|
3353
|
+
int git_merge_file_init_input(git_merge_file_input *input, unsigned int version)
|
3354
|
+
{
|
3355
|
+
return git_merge_file_input_init(input, version);
|
3356
|
+
}
|
3357
|
+
|
3358
|
+
int git_merge_file_options_init(
|
3351
3359
|
git_merge_file_options *opts, unsigned int version)
|
3352
3360
|
{
|
3353
3361
|
GIT_INIT_STRUCTURE_FROM_TEMPLATE(
|
3354
3362
|
opts, version, git_merge_file_options, GIT_MERGE_FILE_OPTIONS_INIT);
|
3355
3363
|
return 0;
|
3356
3364
|
}
|
3365
|
+
|
3366
|
+
int git_merge_file_init_options(
|
3367
|
+
git_merge_file_options *opts, unsigned int version)
|
3368
|
+
{
|
3369
|
+
return git_merge_file_options_init(opts, version);
|
3370
|
+
}
|