summaryrefslogtreecommitdiff
path: root/src/ziplist.c
Commit message (Expand)AuthorAgeFilesLines
* Remove prototypes with empty declarations (#12020)Madelyn Olson2023-05-021-2/+2
* fix arm build warning due to new compiler optimizations (#11362)Oran Agra2022-10-071-1/+1
* fix semantic uncorresponding in comment of ziplist example (#11141)*caco2022-09-071-1/+1
* Avoid using unsafe C functions (#10932)ranshid2022-07-181-11/+11
* cleanup: use ZIPLIST_ENTRY_END macro instead of 1 (#3672)wutao_water2022-05-021-1/+1
* fix typos (#10402)a2tt2022-03-091-1/+1
* Fix typo "the the" (#10399)蔡相跃2022-03-091-1/+1
* fix invalid read on corrupt ziplist (#9831)Oran Agra2021-11-231-0/+2
* Add --large-memory flag for REDIS_TEST to enable tests that consume more than...sundb2021-11-161-2/+4
* Add sanitizer support and clean up sanitizer findings (#9601)Ozan Tezcan2021-11-111-5/+5
* Fix ziplist and listpack overflows and truncations (CVE-2021-32627, CVE-2021-...Oran Agra2021-10-041-1/+16
* Replace all usage of ziplist with listpack for t_zset (#9366)sundb2021-09-091-2/+28
* Sanitize dump payload: handle remaining empty key when RDB loading and restor...sundb2021-08-091-1/+1
* Improvements to corrupt payload sanitization (#9321)Oran Agra2021-08-051-0/+4
* Add test for ziplist (nextdiff == -4 && reqlen < 4) (#9218)Binbin2021-07-111-0/+54
* Fix ziplist length updates on bigendian platforms (#2080)Rob Snyder2021-06-301-1/+1
* Fixed some typos, add a spell check ci and others minor fix (#8890)Binbin2021-06-101-8/+8
* Improve ziplistRandomPairs code logic (#8851)ZheNing Hu2021-04-251-2/+2
* fix typo, stracture to structure (#8784)Bonsai2021-04-141-1/+1
* Add run all test support with define REDIS_TEST (#8570)sundb2021-03-101-8/+14
* Add ziplistReplace, in-place optimized for elements of same sizeViktor Söderqvist2021-02-161-0/+71
* Fix random probability check in ziplistRandomPairsUnique (#8467)sundb2021-02-081-1/+1
* Optimize HRANDFIELD and ZRANDMEMBER case 4 when ziplist encoded (#8444)Oran Agra2021-02-071-15/+61
* RAND* commands: fix risk of OOM panic in hash and zset, use fair random in ha...sundb2021-02-051-0/+2
* Fix test issues from introduction of HRANDFIELD (#8424)Oran Agra2021-01-311-0/+6
* Add HRANDFIELD and ZRANDMEMBER. improvements to SRANDMEMBER (#8297)Yang Bodong2021-01-291-0/+77
* Fix compile warning when define REDIS_TEST (#8261)sundb2021-01-091-2/+2
* cleanup: ziplist prev entry large length use sizeof(uint32_t) instead 4 (#8241)huangzhw2020-12-241-3/+5
* Sanitize dump payload: performance optimizations and tuningOran Agra2020-12-061-16/+95
* Sanitize dump payload: validate no duplicate records in hash/zset/intsetOran Agra2020-12-061-1/+6
* Sanitize dump payload: ziplist, listpack, zipmap, intset, streamOran Agra2020-12-061-57/+239
* Fix printf format specifier for unsigned in ziplistRepr (#7907)Hanif Ariffin2020-10-131-2/+2
* Fix redundancy use of semicolon in do-while macros in ziplist.c. (#7832)WuYunlong2020-09-231-3/+3
* Squash merging 125 typo/grammar/comment/doc PRs (#7773)Oran Agra2020-09-101-8/+8
* Optimize __ziplistCascadeUpdate algorithm (#6886)maohuazhu2020-08-281-47/+202
* fix description about ziplist, the code is ok (#6318)jimgreen20132020-07-111-2/+2
* reformat codeDeliang Yang2020-05-041-1/+1
* Update ziplist.c唐权2019-05-081-1/+1
* Fix typoJack Drogon2018-07-031-2/+2
* Typo: entires -> entries in several places.antirez2018-06-071-2/+2
* Fix ziplist prevlen encoding description. See #4705.antirez2018-02-231-6/+6
* fix assert problem in ZIP_DECODE_PREVLENSIZEqinchao2018-01-161-1/+1
* Fix ziplist fix...antirez2017-02-011-2/+2
* Ziplist: insertion bug under particular conditions fixed.antirez2017-02-011-1/+9
* ziplist: better comments, some refactoring.antirez2017-01-301-100/+250
* Ziplist: remove static from functions, they prevent good crash reports.antirez2017-01-131-14/+14
* Fix missing brackets around encoding variable in ZIP_DECODE_LENGTH macroJustin Carvalho2016-12-191-1/+1
* ziplist.c explanation of format improved a bit.antirez2016-12-161-11/+18
* DEBUG: new "ziplist" subcommand added. Dumps a ziplist on stdout.antirez2016-12-161-13/+18
* Free ziplist test lists during testsMatt Stancliff2015-01-021-0/+26