1. 24 Jan, 2020 12 commits
  2. 15 Jan, 2020 1 commit
  3. 02 Jan, 2020 1 commit
  4. 13 Dec, 2019 1 commit
    • refs: rename git_reference__set_name to git_reference__realloc · 97b8491b
      As git_reference__name will reallocate storage to account for longer
      names (it's actually allocator-dependent), it will cause all existing
      pointers to the old object to become dangling, as they now point to
      freed memory.
      
      Fix the issue by renaming to a more descriptive name, and pass a pointer
      to the actual reference that can safely be invalidated if the realloc
      succeeds.
      Etienne Samson committed
  5. 07 Dec, 2019 1 commit
  6. 04 Dec, 2019 1 commit
  7. 29 Nov, 2019 1 commit
  8. 28 Nov, 2019 3 commits
  9. 22 Nov, 2019 4 commits
  10. 20 Nov, 2019 1 commit
  11. 19 Nov, 2019 1 commit
  12. 22 Oct, 2019 1 commit
  13. 17 Oct, 2019 1 commit
  14. 26 Sep, 2019 1 commit
    • Don't use enum for flags · 452b7f8f
      Using an `enum` causes trouble when used with C++ as bitwise operations are not possible w/o casting (e.g., `opts.flags &= ~GIT_BLOB_FILTER_CHECK_FOR_BINARY;` is invalid as there is no `&=` operator for `enum`).
      
      Signed-off-by: Sven Strickroth <email@cs-ware.de>
      Sven Strickroth committed
  15. 13 Sep, 2019 3 commits
  16. 05 Sep, 2019 1 commit
  17. 11 Aug, 2019 6 commits