• Show log

    Commit

  • Hash : 90f81f9f
    Author : Patrick Steinhardt
    Date : 2018-01-12T12:56:57

    transports: local: fix memory leak in reference walk Upon downloading the pack file, the local transport will iterate through every reference using `git_reference_foreach`. The function is a bit tricky though in that it requires the passed callback to free the references, which does not currently happen. Fix the memory leak by freeing all passed references in the callback.