1. 05 Dec, 2018 3 commits
  2. 04 Dec, 2018 1 commit
  3. 30 Nov, 2018 2 commits
  4. 26 Nov, 2018 1 commit
  5. 04 Nov, 2018 1 commit
  6. 25 Oct, 2018 1 commit
  7. 24 Oct, 2018 1 commit
    • Stefan Hacker's avatar
      Fix redisBufferRead documentation · 169fcc70
      Stefan Hacker authored
      Referred to redisContextReadReply which I cannot find in this codebase
      nor the old redis-tools one. Presumably this meant to say
      redisGetReplyFromReader which is how redisBufferRead is used in this
      file. Could've also meant the interface function redisReaderGetReply.
      169fcc70
  8. 03 Oct, 2018 1 commit
  9. 27 Sep, 2018 2 commits
  10. 26 Sep, 2018 6 commits
  11. 25 Sep, 2018 3 commits
  12. 24 Sep, 2018 1 commit
  13. 31 May, 2018 1 commit
    • Ryan Schmidt's avatar
      Use -dynamiclib instead of -shared on macOS · a65537a6
      Ryan Schmidt authored
      -dynamiclib is the correct documented flag to use to create dynamic
      libraries on macOS. Newer toolchains recognize -shared as a synonym
      of -dynamiclib but older toolchains don't.
      a65537a6
  14. 21 May, 2018 1 commit
  15. 20 May, 2018 4 commits
  16. 19 May, 2018 1 commit
  17. 16 May, 2018 4 commits
  18. 14 May, 2018 3 commits
  19. 10 May, 2018 1 commit
  20. 09 May, 2018 1 commit
  21. 01 May, 2018 1 commit
    • Justin Brewer's avatar
      Remove redundant NULL checks · 58e6b87f
      Justin Brewer authored
      
      
      free(NULL) is a valid NOP. Most of the hiredis free functions behave the
      same way. redisReaderFree is updated to also be NULL-safe.
      
      There is one redundant NULL check at sds.c:1036, but it's left as is
      since sds is imported from upstream.
      Signed-off-by: default avatarJustin Brewer <jzb0012@auburn.edu>
      58e6b87f