1. 06 5月, 2015 1 次提交
  2. 05 5月, 2015 5 次提交
  3. 04 5月, 2015 6 次提交
  4. 29 4月, 2015 4 次提交
    • A
      7af420e7
    • A
      Add header guard for ziplist.h · 9e7f39d2
      antirez 提交于
      As suggested in #2543.
      9e7f39d2
    • S
      Merge pull request #2550 from badboy/readme-fixes · fe0d71d5
      Salvatore Sanfilippo 提交于
      Fix spelling and grammatical errors in readme
      fe0d71d5
    • A
      Fix Sentinel memory leak (hiredis bug) · c806dd79
      antirez 提交于
      This fixes issue #2535, that was actually an hiredis library bug (I
      submitted an issue and fix to the redis/hiredis repo as well).
      
      When an asynchronous hiredis connection subscribes to a Pub/Sub channel
      and gets an error, and in other related conditions, the function
      redisProcessCallbacks() enters a code path where the link is
      disconnected, however the function returns before freeing the allocated
      reply object. This causes a memory leak. The memory leak was trivial to
      trigger in Redis Sentinel, which uses hiredis, every time we tried to
      subscribe to an instance that required a password, in case the Sentinel
      was configured either with the wrong password or without password at
      all. In this case, the -AUTH error caused the leaking code path to be
      executed.
      
      It was verified with Valgrind that after this change the leak no longer
      happens in Sentinel with a misconfigured authentication password.
      c806dd79
  5. 28 4月, 2015 3 次提交
  6. 27 4月, 2015 3 次提交
  7. 26 4月, 2015 1 次提交
  8. 24 4月, 2015 2 次提交
  9. 21 4月, 2015 1 次提交
  10. 20 4月, 2015 2 次提交
  11. 19 4月, 2015 1 次提交
  12. 01 4月, 2015 4 次提交
  13. 31 3月, 2015 1 次提交
    • A
      Fix setTypeNext call assuming NULL can be passed. · 66f9393e
      antirez 提交于
      Segfault introduced during a refactoring / warning suppression a few
      commits away. This particular call assumed that it is safe to pass NULL
      to the object pointer argument when we are sure the set has a given
      encoding. This can't be assumed and is now guaranteed to segfault
      because of the new API of setTypeNext().
      66f9393e
  14. 30 3月, 2015 4 次提交
  15. 27 3月, 2015 2 次提交