• Show log

    Commit

  • Hash : bea5fd9f
    Author : Patrick Steinhardt
    Date : 2020-06-15T13:26:18

    diff_print: do not call abort(3P)
    
    Calling abort(3P) in a library is rather rude and shouldn't happen, as
    we effectively prohibit any corrective actions made by the application
    linking to it. We thus shouldn't call it at all, but instead use our new
    `GIT_ASSERT` macros.
    
    Remove the call to abort(3P) in case a diff delta has an unexpected type
    to fix this.