1. 12 Oct, 2018 1 commit
  2. 11 Oct, 2018 1 commit
  3. 10 Oct, 2018 5 commits
  4. 09 Oct, 2018 8 commits
  5. 08 Oct, 2018 3 commits
  6. 07 Oct, 2018 1 commit
  7. 05 Oct, 2018 2 commits
  8. 04 Oct, 2018 1 commit
  9. 02 Oct, 2018 7 commits
  10. 01 Oct, 2018 6 commits
  11. 30 Sep, 2018 3 commits
    • Bruce Merry's avatar
      Fix incorrect memory usage accounting in zrealloc · 8fd1031b
      Bruce Merry authored
      When HAVE_MALLOC_SIZE is false, each call to zrealloc causes used_memory
      to increase by PREFIX_SIZE more than it should, due to mis-matched
      accounting between the original zmalloc (which includes PREFIX size in
      its increment) and zrealloc (which misses it from its decrement).
      
      I've also supplied a command-line test to easily demonstrate the
      problem. It's not wired into the test framework, because I don't know
      TCL so I'm not sure how to automate it.
      8fd1031b
    • Oran Agra's avatar
      fix #5024 - commandstats for multi-exec were logged as EXEC. · f03aed3c
      Oran Agra authored
      this was broken a while back by ba9154d7
      the purpose of which was to fix commandstats for GEOADD
      f03aed3c
    • Bruce Merry's avatar
      Fix invalid use of sdsZmallocSize on an embedded string · ecc48369
      Bruce Merry authored
      sdsZmallocSize assumes a dynamically allocated SDS. When given a string
      object created by createEmbeddedStringObject, it calls zmalloc_size on a
      pointer that isn't the one returned by zmalloc
      ecc48369
  12. 28 Sep, 2018 2 commits