• Show log

    Commit

  • Hash : 24597812
    Author : Patrick Steinhardt
    Date : 2018-06-29T09:11:02

    delta: fix out-of-bounds read of delta
    
    When computing the offset and length of the delta base, we repeatedly
    increment the `delta` pointer without checking whether we have advanced
    past its end already, which can thus result in an out-of-bounds read.
    Fix this by repeatedly checking whether we have reached the end. Add a
    test which would cause Valgrind to produce an error.
    
    Reported-by: Riccardo Schirone <rschiron@redhat.com>
    Test-provided-by: Riccardo Schirone <rschiron@redhat.com>
    

  • README.md

  • Writing Clar tests for libgit2

    For information on the Clar testing framework and a detailed introduction please visit:

    https://github.com/vmg/clar

    • Write your modules and tests. Use good, meaningful names.

    • Make sure you actually build the tests by setting:

        cmake -DBUILD_CLAR=ON build/
    • Test:

        ./build/libgit2_clar
    • Make sure everything is fine.

    • Send your pull request. That’s it.