1. 29 Jun, 2016 3 commits
    • Merge pull request #3813 from stinb/submodule-update-fetch · 59a0005d
      submodule: Try to fetch when update fails to find the target commit.
      Edward Thomson committed
    • Merge pull request #3842 from pks-t/pks/double-free · d88e5001
      blame: increment reference count for origin's commit
      Edward Thomson committed
    • blame: do not decrement commit refcount in make_origin · 21766702
      When we create a blame origin, we try to look up the blob that is
      to be blamed at a certain revision. When this lookup fails, e.g.
      because the file did not exist at that certain revision, we fail
      to create the blame origin and return `NULL`. The blame origin
      that we have just allocated is thereby free'd with
      `origin_decref`.
      
      The `origin_decref` function does not only decrement reference
      counts for the blame origin, though, but also for its commit and
      blob. When this is done in the error case, we will cause an
      uneven reference count for these objects. This may result in
      hard-to-debug failures at seemingly unrelated code paths, where
      we try to access these objects when they in fact have already
      been free'd.
      
      Fix the issue by refactoring `make_origin` such that we only
      allocate the object after the only function that may fail so that
      we do not have to call `origin_decref` at all. Also fix the
      `pass_blame` function, which indirectly calls `make_origin`, to
      free the commit when `make_origin` failed.
      Patrick Steinhardt committed
  2. 28 Jun, 2016 1 commit
  3. 26 Jun, 2016 7 commits
  4. 21 Jun, 2016 6 commits
  5. 20 Jun, 2016 16 commits
  6. 19 Jun, 2016 1 commit
  7. 17 Jun, 2016 1 commit
  8. 16 Jun, 2016 1 commit
  9. 15 Jun, 2016 2 commits
  10. 14 Jun, 2016 2 commits