1. 06 Jun, 2014 6 commits
  2. 05 Jun, 2014 2 commits
  3. 04 Jun, 2014 3 commits
    • antirez's avatar
      Fixed dbuf variable scope in luaRedisGenericCommand(). · 3758f27b
      antirez authored
      I'm not sure if while the visibility is the inner block, the fact we
      point to 'dbuf' is a problem or not, probably the stack var isx
      guaranteed to live until the function returns. However obvious code is
      better anyway.
      3758f27b
    • antirez's avatar
      Regression test for issue #1118. · 3307db49
      antirez authored
      3307db49
    • antirez's avatar
      Scripting: better Lua number -> string conversion in luaRedisGenericCommand(). · 072982d8
      antirez authored
      The lua_to*string() family of functions use a non optimal format
      specifier when converting integers to strings. This has both the problem
      of the number being converted in exponential notation, which we don't
      use as a Redis return value when floating point numbers are involed,
      and, moreover, there is a loss of precision since the default format
      specifier is not able to represent numbers that must be represented
      exactly in the IEEE 754 number mantissa.
      
      The new code handles it as a special case using a saner conversion.
      
      This fixes issue #1118.
      072982d8
  4. 31 May, 2014 1 commit
  5. 28 May, 2014 2 commits
  6. 26 May, 2014 6 commits
  7. 23 May, 2014 4 commits
  8. 22 May, 2014 6 commits
  9. 21 May, 2014 3 commits
  10. 20 May, 2014 5 commits
  11. 19 May, 2014 2 commits
    • michael-grunder's avatar
      Fix LUA_OBJCACHE segfault. · ea0e2524
      michael-grunder authored
      When scanning the argument list inside of a redis.call() invocation
      for pre-cached values, there was no check being done that the
      argument we were on was in fact within the bounds of the cache size.
      
      So if a redis.call() command was ever executed with more than 32
      arguments (current cache size #define setting) redis-server could
      segfault.
      ea0e2524
    • antirez's avatar
      HyperLogLog regression test for issue #1762. · a9e62ab9
      antirez authored
      a9e62ab9