redis/src
antirez ce17f76bbd Security: fix redis-cli buffer overflow.
Thanks to Fakhri Zulkifli for reporting it.

The fix switched to dynamic allocation, copying the final prompt in the
static buffer only at the end.
2018-06-13 12:40:33 +02:00
..
modules Modules API: blocked client disconnection callback. 2018-04-12 13:21:48 +02:00
.gitignore
Makefile append -lrt to FINAL_LIBS for linux 2018-05-25 20:16:57 +08:00
adlist.c adlist: fix listJoin() in the case the second list is empty. 2017-11-28 18:25:14 +01:00
adlist.h
ae.c Fix ae.c when a timer finalizerProc adds an event. 2018-03-28 14:11:04 +02:00
ae.h Fix ae.c when a timer finalizerProc adds an event. 2018-03-28 14:11:04 +02:00
ae_epoll.c
ae_evport.c
ae_kqueue.c
ae_select.c
anet.c fix missed call on freeaddrinfo 2018-03-21 15:34:13 +08:00
anet.h
aof.c Don't expire keys while loading RDB from AOF preamble. 2018-05-29 12:37:42 +02:00
asciilogo.h
atomicvar.h
bio.c
bio.h
bitops.c
blocked.c Fix client unblocking for XREADGROUP, issue #4978. 2018-06-11 16:51:06 +02:00
childinfo.c
cluster.c Typo: entires -> entries in several places. 2018-06-07 14:36:56 +02:00
cluster.h Modules Cluster API: message bus implementation. 2018-03-29 15:13:31 +02:00
config.c fix active-defrag-threshold value error 2018-06-12 17:59:32 +08:00
config.h
crc16.c
crc64.c
crc64.h
db.c In scanDatabaseForReadyLists() now we need to handle ZSETs as well. 2018-06-12 17:28:40 +02:00
debug.c Implement DEBUG htstats-key. 2018-06-08 11:17:20 +02:00
debugmacro.h
defrag.c Adding real allocator fragmentation to INFO and MEMORY command + active defrag test 2018-03-12 15:08:52 +02:00
dict.c Merge pull request #4800 from soloestoy/dict-expand 2018-06-08 12:32:18 +02:00
dict.h dict: fix the int problem for defrag 2017-12-05 15:38:03 +01:00
endianconv.c
endianconv.h
evict.c Merge pull request #4594 from smallstool/bugfix-freeMemoryIfneeded-int-overflow 2018-05-08 17:27:18 +02:00
expire.c Track number of logically expired keys still in memory. 2018-02-19 11:12:49 +01:00
fmacros.h
geo.c
geo.h
geohash.c
geohash.h
geohash_helper.c
geohash_helper.h
help.h redis-cli inline help updated. 2018-06-07 18:53:00 +02:00
hyperloglog.c Clean gcc 7.x warnings, redis-cli cluster fix. 2018-06-03 15:54:30 +03:00
intset.c
intset.h
latency.c getting rid of duplicated code 2018-02-14 00:12:13 +09:00
latency.h
lazyfree.c Put more details in the comment introduced by #4601. 2018-01-15 12:50:08 +01:00
listpack.c Remove warning from lpGet snprintf(). 2018-03-01 15:26:27 +01:00
listpack.h Streams: 12 commits squashed into the initial Streams implementation. 2017-12-01 10:24:24 +01:00
listpack_malloc.h Streams: change listpack allocator to zmalloc. 2017-12-01 10:24:24 +01:00
lzf.h
lzfP.h Fix undefined behavior constant defined. 2017-11-19 16:23:42 +00:00
lzf_c.c
lzf_d.c Clean gcc 7.x warnings, redis-cli cluster fix. 2018-06-03 15:54:30 +03:00
memtest.c
mkreleasehdr.sh
module.c Modules Timer API: fix wrong raxInsert() usage 2018-04-14 01:20:02 +08:00
multi.c
networking.c Add top comments in two addReply*() functions. 2018-03-22 11:45:04 +01:00
notify.c Merge pull request #4479 from dvirsky/notify 2018-02-15 21:36:32 +01:00
object.c Merge pull request #4953 from soloestoy/fix-memory-overhead 2018-05-31 17:31:24 +02:00
pqsort.c
pqsort.h
pubsub.c Change indentation and other minor details of PR #4489. 2017-12-06 12:05:14 +01:00
quicklist.c quicklist: fix the return value of quicklistCount 2017-12-04 19:49:23 +08:00
quicklist.h quicklist: change the len of quicklist to unsigned long 2017-12-04 19:49:40 +08:00
rand.c
rand.h
rax.c Rax library updated. 2018-06-04 17:26:16 +02:00
rax.h Rax library updated. 2018-06-04 17:26:16 +02:00
rax_malloc.h
rdb.c RDB: Apply fix to rdbLoadMillisecondTime() only for new RDB versions. 2018-06-12 18:21:39 +02:00
rdb.h Don't expire keys while loading RDB from AOF preamble. 2018-05-29 12:37:42 +02:00
redis-benchmark.c redis-benchmark: bugfix - handle zero liveclients in right way 2018-01-03 12:47:25 +08:00
redis-check-aof.c
redis-check-rdb.c RDB: make RDB check aware of LFU/LRU opcodes. 2018-03-15 16:39:33 +01:00
redis-cli.c Security: fix redis-cli buffer overflow. 2018-06-13 12:40:33 +02:00
redis-trib.rb Cluster: improve anti-affinity algo in redis-trib.rb. 2018-01-18 11:44:19 +01:00
redisassert.h
redismodule.h Modules API: Add call to get the blocked client handle from the context. 2018-04-13 13:48:11 +02:00
release.c
replication.c Fix write() errno error 2018-06-06 13:06:42 +02:00
rio.c fix processing of large bulks (above 2GB) 2017-12-29 12:24:19 +02:00
rio.h fix processing of large bulks (above 2GB) 2017-12-29 12:24:19 +02:00
scripting.c Change indentation and other minor details of PR #4489. 2017-12-06 12:05:14 +01:00
sds.c Merge pull request #3828 from oranagra/sdsnewlen_pr 2018-02-27 04:04:32 -08:00
sds.h Merge pull request #3828 from oranagra/sdsnewlen_pr 2018-02-27 04:04:32 -08:00
sdsalloc.h
sentinel.c Sentinel: fix delay in detecting ODOWN. 2018-05-23 17:13:44 +02:00
server.c Use a less aggressive query buffer resize policy. 2018-06-11 17:12:28 +02:00
server.h Merge pull request #4519 from soloestoy/zset-int-problem 2018-06-08 12:45:11 +02:00
setproctitle.c Fix undefined behavior constant defined. 2017-11-19 16:23:42 +00:00
sha1.c
sha1.h
siphash.c Clean gcc 7.x warnings, redis-cli cluster fix. 2018-06-03 15:54:30 +03:00
slowlog.c Change indentation and other minor details of PR #4489. 2017-12-06 12:05:14 +01:00
slowlog.h
solarisfixes.h
sort.c
sparkline.c
sparkline.h
stream.h Streams: iterator entry deletion abilities. 2018-04-17 17:18:00 +02:00
syncio.c
t_hash.c Merge pull request #3745 from guybe7/unstable 2018-02-13 15:50:21 +01:00
t_list.c Make blocking list commands send keyspace notifications 2018-03-22 17:22:26 +07:00
t_set.c set: fix the int problem for qsort 2017-12-05 17:42:19 +08:00
t_stream.c Streams: generate a few additional events. 2018-06-12 18:11:15 +02:00
t_string.c
t_zset.c Merge pull request #4519 from soloestoy/zset-int-problem 2018-06-08 12:45:11 +02:00
testhelp.h
util.c Modules API: RM_GetRandomBytes() / GetRandomHexChars(). 2018-04-05 13:24:22 +02:00
util.h
valgrind.sup
version.h
ziplist.c Typo: entires -> entries in several places. 2018-06-07 14:36:56 +02:00
ziplist.h
zipmap.c
zipmap.h
zmalloc.c Merge pull request #4901 from KFilipek/zmalloc_typo_fix 2018-06-11 16:32:40 +02:00
zmalloc.h Adding real allocator fragmentation to INFO and MEMORY command + active defrag test 2018-03-12 15:08:52 +02:00