mirror of
https://github.com/redis/redis.git
synced 2026-02-03 20:39:54 -05:00
fix processMultiBulkBuffer to processMultibulkBuffer
This commit is contained in:
parent
090f6252c4
commit
869a7edeff
1 changed files with 1 additions and 1 deletions
|
|
@ -2900,7 +2900,7 @@ void readQueryFromClient(connection *conn) {
|
|||
* that is large enough, try to maximize the probability that the query
|
||||
* buffer contains exactly the SDS string representing the object, even
|
||||
* at the risk of requiring more read(2) calls. This way the function
|
||||
* processMultiBulkBuffer() can avoid copying buffers to create the
|
||||
* processMultibulkBuffer() can avoid copying buffers to create the
|
||||
* Redis Object representing the argument. */
|
||||
if (c->reqtype == PROTO_REQ_MULTIBULK && c->multibulklen && c->bulklen != -1
|
||||
&& c->bulklen >= PROTO_MBULK_BIG_ARG)
|
||||
|
|
|
|||
Loading…
Reference in a new issue