1. 11 Feb, 2019 3 commits
    • Chris Lamb's avatar
      Don't assume the __x86_64__ pointer size to avoid warnings on x32. · d0089cf2
      Chris Lamb authored
      __x86_64__ is defined on the on the x32 architecture and the conditionals in
      debug.c therefore assume the size of (void*) etc:
      
        debug.c: In function 'getMcontextEip':
        debug.c:757:12: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
             return (void*) uc->uc_mcontext.gregs[16]; /* Linux 64 */
                    ^
        debug.c: In function 'logRegisters':
        debug.c:920:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
             logStackContent((void**)uc->uc_mcontext.gregs[15]);
      
      We can remedy this by checking for __ILP32__ first. See:
      
        https://wiki.debian.org/ArchitectureSpecificsMemo
      
      ... for more info.
      d0089cf2
    • antirez's avatar
      ACL: ACLFreeUserAndKillClients(): free user later. · df346bca
      antirez authored
      Soon or later we may have code in freeClient() that may have to deal
      with ACLs. Imagine for instance the command proposed multiple times (not
      sure if this will ever be accepted but still...):
      
          ONCLOSE DEL mykey
      
      Accumulating commands to run when a client is disconnected. Now the
      function is compatible with such use cases.
      
      Related to #5829.
      df346bca
    • zhaozhao.zz's avatar
      2ce96c0f
  2. 08 Feb, 2019 4 commits
  3. 07 Feb, 2019 9 commits
  4. 06 Feb, 2019 3 commits
  5. 05 Feb, 2019 4 commits
  6. 04 Feb, 2019 6 commits
  7. 01 Feb, 2019 4 commits
  8. 31 Jan, 2019 5 commits
  9. 30 Jan, 2019 2 commits