diff options
author | Justin Brewer <jzb0012@auburn.edu> | 2018-05-17 20:19:12 -0500 |
---|---|---|
committer | Justin Brewer <jzb0012@auburn.edu> | 2018-05-21 10:49:30 -0500 |
commit | ef4256670f2c23bd3de3963c0dc4882599ac3300 (patch) | |
tree | 2f588a9ef983c1b8280ed48a1eba90782f8028f1 /CHANGELOG.md | |
parent | 33a36dc25b34bdc2abf02b5dbe21ec72712297b4 (diff) |
Update createArray to take size_t
This makes createArray consistent with createString, which also takes
size_t. Bounds-check and unit tests are updated to allow up to
min(SIZE_MAX,LLONG_MAX).
Changelog is updated to mention this API break.
Signed-off-by: Justin Brewer <jzb0012@auburn.edu>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f40ec53..7fa7c48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ User code should compare this to `size_t` values as well. If it was used to compare to other values, casting might be necessary or can be removed, if casting was applied before. +* `redisReplyObjectFunctions.createArray` now takes `size_t` for its length parameter. + * Remove backwards compatibility macro's This removes the following old function aliases, use the new name now: |