• Show log

    Commit

  • Hash : 5fabaca8
    Author : Patrick Steinhardt
    Date : 2018-08-09T11:04:42

    smart_pkt: fix buffer overflow when parsing "unpack" packets
    
    When checking whether an "unpack" packet returned the "ok" status or
    not, we use a call to `git__prefixcmp`. In case where the passed line
    isn't properly NUL terminated, though, this may overrun the line buffer.
    Fix this by using `git__prefixncmp` instead.