1. 01 May, 2017 5 commits
  2. 29 Apr, 2017 2 commits
  3. 28 Apr, 2017 1 commit
  4. 26 Apr, 2017 5 commits
  5. 25 Apr, 2017 5 commits
  6. 21 Apr, 2017 3 commits
  7. 17 Apr, 2017 3 commits
  8. 12 Apr, 2017 2 commits
  9. 11 Apr, 2017 4 commits
  10. 10 Apr, 2017 2 commits
    • openssl_stream: use new initialization function on OpenSSL version >=1.1 · 88520151
      Previous to OpenSSL version 1.1, the user had to initialize at least the error
      strings as well as the SSL algorithms by himself. OpenSSL version 1.1 instead
      provides a new function `OPENSSL_init_ssl`, which handles initialization of all
      subsystems. As the new API call will by default load error strings and
      initialize the SSL algorithms, we can safely replace these calls when compiling
      against version 1.1 or later.
      
      This fixes a compiler error when compiling against OpenSSL version 1.1 which has
      been built without stubs for deprecated syntax.
      Patrick Steinhardt committed
    • openssl_stream: remove locking initialization on OpenSSL version >=1.1 · 29081c2f
      Up to version 1.0, OpenSSL required us to provide a callback which implements
      a locking mechanism. Due to problems in the API design though this mechanism was
      inherently broken, especially regarding that the locking callback cannot report
      errors in an obvious way. Due to this shortcoming, the locking initialization
      has been completely removed in OpenSSL version 1.1. As the library has also been
      refactored to not make any use of these callback functions, we can safely remove
      all initialization of the locking subsystem if compiling against OpenSSL version
      1.1 or higher.
      
      This fixes a compilation error when compiling against OpenSSL version 1.1 which
      has been built without stubs for deprecated syntax.
      Patrick Steinhardt committed
  11. 07 Apr, 2017 3 commits
    • filter: only close filter if it's been initialized correctly · cf07db2f
      In the function `git_filter_list_stream_data`, we initialize, write and
      subesquently close the stream which should receive content processed by
      the filter. While we skip writing to the stream if its initialization
      failed, we still try to close it unconditionally -- even if the
      initialization failed, where the stream might not be set at all, leading
      us to segfault.
      
      Semantics in this code is not really clear. The function handling the
      same logic for files instead of data seems to do the right thing here in
      only closing the stream when initialization succeeded. When stepping
      back a bit, this is only reasonable: if a stream cannot be initialized,
      the caller would not expect it to be closed again. So actually, both
      callers of `stream_list_init` fail to do so. The data streaming function
      will always close the stream and the file streaming function will not
      close the stream if writing to it has failed.
      
      The fix is thus two-fold:
      
      - callers of `stream_list_init` now close the stream iff it has been
        initialized
      - `stream_list_init` now closes the lastly initialized stream if
        the current stream in the chain failed to initialize
      
      Add a test which segfaulted previous to these changes.
      Patrick Steinhardt committed
    • Merge pull request #4193 from pks-t/pks/libdir · 44998cdb
      pkgconfig: fix handling of prefixes containing whitespaces
      Edward Thomson committed
  12. 05 Apr, 2017 5 commits
    • pkgconfig: fix handling of prefixes containing whitespaces · 22436f29
      Our libgit2.pc.in file is quoting the `libdir` variable in our declared
      "Libs:" line. The intention is to handle whitespaces here, but pkgconfig
      already does so by automatically escaping whitespace with backslashes.
      The correct thing to do is to instead quote the prefix, as this is the
      one which is being substituted by CMake upon installation. As both
      libdir and includedir will be expanded to "${prefix}/lib" and
      "${prefix}/include", respectively, pkgconfig will also correctly escape
      whitespaces.
      
      Note that this will actually break when a user manually wants to
      override libdir and includedir with a path containing whitespace. But
      actually, this cannot be helped, as always quoting these variables will
      actuall break the common case of being prefixed with "${prefix}". So we
      just bail out here and declare this as unsupported out of the box.
      Patrick Steinhardt committed
    • refs: update worktree HEADs when renaming branches · 2a485dab
      Whenever we rename a branch, we update the repository's symbolic HEAD
      reference if it currently points to the branch that is to be renamed.
      But with the introduction of worktrees, we also have to iterate over all
      HEADs of linked worktrees to adjust them. Do so.
      Patrick Steinhardt committed
    • branch: use `foreach_head` to see if a branch is checked out · 38fc5ab0
      Previously, we have extracted the logic to find and iterate over all
      HEADs of a repository. Use this function in `git_branch_is_checked_out`.
      Patrick Steinhardt committed
    • repository: add function to iterate over all HEADs · 74511aa2
      While we already provide functions to get the current repository's HEAD,
      it is quite involved to iterate over HEADs of both the repository and
      all linked work trees. This commit implements a function
      `git_repository_foreach_head`, which accepts a callback which is then
      called for all HEAD files.
      Patrick Steinhardt committed
    • repository: get worktree HEAD via `git_reference__read_head` · 3e84aa50
      The functions `git_repository_head_for_worktree` and
      `git_repository_detached_head_for_worktree` both implement their
      own logic to read the HEAD reference file. Use the new function
      `git_reference__read_head` instead to unify the code paths.
      Patrick Steinhardt committed