summaryrefslogtreecommitdiff
path: root/deps/hiredis/sds.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/hiredis/sds.c')
-rw-r--r--deps/hiredis/sds.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/deps/hiredis/sds.c b/deps/hiredis/sds.c
index 4af9961ad..32d103d30 100644
--- a/deps/hiredis/sds.c
+++ b/deps/hiredis/sds.c
@@ -206,7 +206,6 @@ void sdsIncrLen(sds s, int incr) {
assert(sh->len >= (unsigned int)(-incr));
sh->len += incr;
sh->free -= incr;
- assert(sh->free >= 0);
s[sh->len] = '\0';
}