1. 17 Oct, 2018 5 commits
  2. 16 Oct, 2018 4 commits
  3. 15 Oct, 2018 3 commits
  4. 13 Oct, 2018 1 commit
  5. 11 Oct, 2018 5 commits
  6. 10 Oct, 2018 1 commit
  7. 09 Oct, 2018 8 commits
  8. 08 Oct, 2018 1 commit
  9. 07 Oct, 2018 1 commit
  10. 05 Oct, 2018 2 commits
  11. 04 Oct, 2018 2 commits
  12. 02 Oct, 2018 4 commits
  13. 01 Oct, 2018 2 commits
  14. 30 Sep, 2018 1 commit
    • 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