1. 28 Jan, 2012 1 commit
  2. 27 Jan, 2012 2 commits
  3. 26 Jan, 2012 1 commit
  4. 25 Jan, 2012 5 commits
  5. 23 Jan, 2012 2 commits
  6. 20 Jan, 2012 1 commit
  7. 19 Jan, 2012 7 commits
  8. 18 Jan, 2012 2 commits
  9. 17 Jan, 2012 7 commits
  10. 16 Jan, 2012 3 commits
  11. 15 Jan, 2012 1 commit
    • Fix #534: 64-bit issues in Windows · 1af56d7d
      off_t is always 32 bits in Windows, which is beyond stupid, but we just
      don't care anymore because we're using `git_off_t` which is assured to
      be 64 bits on all platforms, regardless of compilation mode. Just
      ensure that no casts to `off_t` are performed.
      
      Also, the check for `off_t` overflows has been dropped, once again,
      because the size of our offsets is always 64 bits on all platforms.
      
      Fixes #534
      Vicent Martí committed
  12. 13 Jan, 2012 2 commits
    • config: handle EOF properly · c1c399cf
      In the main loop we peek to see what kind of line the next one is. If
      there are multiple newlines before the end of the file, the eof marker
      won't be set after we read the last line with data and we'll try to
      peek again. This peek will return LF (as it pretends that we have a
      newline at EOF so other function don't need any special handling).
      
      Fix cfg_getchar so it doesn't try to read past the last character in
      the file and config_parse so it considers LF as EOF on peek (as we're
      ignoring spaces) and sets the reader's EOF flag to exit the parsing
      loop.
      Carlos Martín Nieto committed
  13. 12 Jan, 2012 4 commits
  14. 11 Jan, 2012 2 commits