1. 25 Aug, 2014 7 commits
  2. 18 Aug, 2014 9 commits
  3. 13 Aug, 2014 3 commits
  4. 12 Aug, 2014 3 commits
  5. 08 Aug, 2014 15 commits
  6. 07 Aug, 2014 3 commits
    • ripcurld00d's avatar
      redis-check-dump: use names instead of magic nums · 9b4efe6c
      ripcurld00d authored
      Use constants to avoid magic numbers in `types`, which is an array
      that stores the names of `REDIS` types.
      
      Closes #1681
      9b4efe6c
    • Kashif Rasul's avatar
      Fix issues raised by clang analyzer · c49378fe
      Kashif Rasul authored
      Modified by @antirez since the original fix to genInfoString() looked
      weak. Probably the clang analyzer complained about `section` being
      possibly NULL, and strcasecmp() called with a NULL pointer. In the
      practice this can never happen, still for the sake of correctness
      the right fix is not to modify only the first call, but to set `section`
      to the value of "default" if it happens to be NULL.
      
      Closes #1660
      c49378fe
    • antirez's avatar
      Force quit when receiving a second SIGINT. · 7bb25f8a
      antirez authored
      Also quit ASAP when we are still loading a DB, since care is not needed
      in this special condition, especially for a SIGINT.
      7bb25f8a