- 11 Feb, 2016 3 commits
-
-
Arthur Schreiber committed
-
When we moved the logic to handle the first one, wrong loop logic was kept in place which meant we still finished early. But we now notice it because we're not reading past the last LF we find. This was not noticed before as the last field in the tested commit was multi-line which does not trigger the early break.
Carlos Martín Nieto committed -
Coverity improvements for GITERR_CHECK_ALLOC
Carlos Martín Nieto committed
-
- 10 Feb, 2016 2 commits
-
-
When posting our instrumented build results to Coverity we have to include sensitive information, in particular our authorization token. Currently we use an unencrypted channel to post this information, leading to the token being transferred in plain. Fix this by using a secured connection instead.
Patrick Steinhardt committed -
Coverity currently lists a lot of errors with regard to GITERR_CHECK_ALLOC causing resource leaks. We know this macro is only invoked when we want to abort because we are out of memory. Coverity allows for overriding the default model where we know that certain functions guarantee a desired behavior. The user_nodefs.h is used to override the behavior of macros. Re-define GITERR_CHECK_ALLOC inside of it to specify its abort nature.
Patrick Steinhardt committed
-
- 09 Feb, 2016 15 commits
-
-
Introduce git_commit_extract_signature
Vicent Marti committed -
Coverity fixes
Carlos Martín Nieto committed -
This returns the GPG signature for a commit and its contents without the signature block, allowing for the verification of the commit's signature.
Carlos Martín Nieto committed -
commit: also match the first header field when searching
Carlos Martín Nieto committed -
Patrick Steinhardt committed
-
Patrick Steinhardt committed
-
Patrick Steinhardt committed
-
Patrick Steinhardt committed
-
The function `git_packfile_stream_open` tries to free the passed in stream when an error occurs. The only call site is `git_indexer_append`, though, which passes in the address of a stream struct which has not been allocated on the heap. Fix the issue by simply removing the call to free. In case of an error we did not allocate any memory yet and otherwise it should be the caller's responsibility to manage it's object's lifetime.
Patrick Steinhardt committed -
We were searching only past the first header field, which meant we were unable to find e.g. `tree` which is the first field. While here, make sure to set an error message in case we cannot find the field.
Carlos Martín Nieto committed -
Coverity fixes
Carlos Martín Nieto committed -
Better document `git_merge_commits` redux
Carlos Martín Nieto committed -
`git_merge_commits` and `git_merge` now *do* handle recursive base building for criss-cross merges. Remove the documentation that says that they do not. This reverts commit 5e44d9bc.
Edward Thomson committed -
mailmap: add ethomson@github.com
Edward Thomson committed -
Edward Thomson committed
-
- 08 Feb, 2016 2 commits
-
-
When copying contents of the cURL certiinfo we duplicate the data but forget to actually put it into the vector.
Patrick Steinhardt committed -
Patrick Steinhardt committed
-
- 07 Feb, 2016 1 commit
-
-
Introduce Contributor Covenant
Carlos Martín Nieto committed
-
- 05 Feb, 2016 3 commits
-
-
Free allocated pointer to curl stream on error
Carlos Martín Nieto committed -
winhttp: name mangle class / iid on mingw
Edward Thomson committed -
Export git_stash_apply_init_options
Edward Thomson committed
-
- 04 Feb, 2016 3 commits
-
-
Fix typo
Edward Thomson committed -
Ephemera committed
-
Fix a typo in documentation
Edward Thomson committed
-
- 03 Feb, 2016 1 commit
-
-
Nicolas Vanheuverzwijn committed
-
- 02 Feb, 2016 1 commit
-
-
Edward Thomson committed
-
- 24 Jan, 2016 1 commit
-
-
jbreeden committed
-
- 19 Jan, 2016 1 commit
-
-
Standard Windows type systems define CLSID_InternetSecurityManager and IID_IInternetSecurityManager, but MinGW lacks these definitions. As a result, we must hardcode these definitions ourselves. However, we should not use a public struct with those names, lest another library do the same thing and consumers cannot link to both.
Edward Thomson committed
-
- 17 Jan, 2016 1 commit
-
-
Bob Kuo committed
-
- 16 Jan, 2016 1 commit
-
-
Make packfile_unpack_compressed a private API
Carlos Martín Nieto committed
-
- 13 Jan, 2016 2 commits
-
-
Fix some issues with generated pkg-config file
Carlos Martín Nieto committed -
P.S.V.R committed
-
- 09 Jan, 2016 2 commits
-
-
Arthur Schreiber committed
-
Arthur Schreiber committed
-
- 29 Dec, 2015 1 commit
-
-
ssh_stream_read(): fix possible *bytes_read < 0 branch
Carlos Martín Nieto committed
-