1. 06 Feb, 2015 1 commit
  2. 05 Feb, 2015 5 commits
  3. 04 Feb, 2015 9 commits
  4. 03 Feb, 2015 5 commits
  5. 31 Jan, 2015 1 commit
  6. 30 Jan, 2015 3 commits
  7. 27 Jan, 2015 1 commit
  8. 26 Jan, 2015 9 commits
  9. 25 Jan, 2015 4 commits
  10. 24 Jan, 2015 2 commits
    • pathspec: do not try to dereference NULL · dc5fe00c
      pathspec_match_free() should not dereference a NULL passed to it.
      
      I found this issue when I tried to run example log program with
      nonexistent branch:
      
      ./example/log help
      
      Such call leads to segmentation fault.
      Boris Egorov committed
    • openssl: Add all required includes for AF_INET6 and in6_addr. · 3cda6be7
      This fixes the build at least on FreeBSD, where those types were not
      defined indirectly:
      
      src/openssl_stream.c:100:18: error: variable has incomplete type 'struct in6_addr'
              struct in6_addr addr6;
                              ^
      src/openssl_stream.c:100:9: note: forward declaration of 'struct in6_addr'
              struct in6_addr addr6;
                     ^
      src/openssl_stream.c:111:18: error: use of undeclared identifier 'AF_INET'
              if (p_inet_pton(AF_INET, host, &addr4)) {
                              ^
      src/unix/posix.h:31:40: note: expanded from macro 'p_inet_pton'
                                             ^
      src/openssl_stream.c:115:18: error: use of undeclared identifier 'AF_INET6'
                      if(p_inet_pton(AF_INET6, host, &addr6)) {
                                     ^
      src/unix/posix.h:31:40: note: expanded from macro 'p_inet_pton'
                                             ^
      Raphael Kubo da Costa committed