1. 25 Apr, 2022 2 commits
  2. 18 Apr, 2022 1 commit
  3. 16 Apr, 2022 1 commit
  4. 14 Apr, 2022 1 commit
    • remote: Delete a now-inexistent API declaration · 88f24384
      6fc6eeb6 replaced the remote options
      with `git_remote_connect_options`. The function definitions were
      removed, but one function declaration remained, causing linker errors if
      one tried to use it.
      
      This change removes the declaration of
      `git_transport_smart_proxy_option` to better reflect reality.
      lhchavez committed
  5. 12 Apr, 2022 7 commits
  6. 11 Apr, 2022 1 commit
  7. 10 Apr, 2022 17 commits
  8. 06 Apr, 2022 4 commits
  9. 05 Apr, 2022 1 commit
    • [midx] Fix an undefined behavior (left-shift signed overflow) · 33b1d3fd
      There was a missing check to ensure that the `off64_t` (which is a
      signed value) didn't overflow when parsing it from the midx file. This
      shouldn't have huge repercusions since the parsed value is immediately
      validated afterwards, but then again, there is no such thing as "benign"
      undefined behavior.
      
      This change makes all the bitwise arithmetic happen with unsigned types
      and is only casted to `off64_t` until the very end.
      
      Thanks to Taotao Gu for finding and reporting this!
      lhchavez committed
  10. 04 Apr, 2022 3 commits
  11. 23 Mar, 2022 2 commits