• Show log

    Commit

  • Hash : 790aae77
    Author : Edward Thomson
    Date : 2019-02-23T18:40:43

    odb: rename git_odb_backend_malloc for consistency
    
    The `git_odb_backend_malloc` name is a system function that is provided
    for custom ODB backends and allows them to allocate memory for an ODB
    object in the read callback.  This is important so that libgit2 can
    later free the memory used by an ODB object that was read from the
    custom backend.
    
    However, the name _suggests_ that it actually allocates a
    `git_odb_backend`.  It does not; rename it to make it clear that it
    actually allocates backend _data_.