fix processMultiBulkBuffer to processMultibulkBuffer

This commit is contained in:
charsyam 2025-05-17 22:54:47 +09:00
parent 090f6252c4
commit 869a7edeff

View file

@ -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)