• Show log

    Commit

  • Hash : 1a2efd10
    Author : Patrick Steinhardt
    Date : 2018-10-18T11:35:08

    config: remove last instance of `git__strntol64`
    
    When parsing integers from configuration values, we use `git__strtol64`.
    This is fine to do, as we always sanitize values and can thus be sure
    that they'll have a terminating `NUL` byte. But as this is the last
    call-site of `git__strtol64`, let's just pass in the length explicitly
    by calling `strlen` on the value to be able to remove `git__strtol64`
    altogether.