jamesge commented on code in PR #3035: URL: https://github.com/apache/brpc/pull/3035#discussion_r2224992680
########## src/brpc/redis_reply.cpp: ########## @@ -229,9 +233,10 @@ ParseError RedisReply::ConsumePartialIOBuf(butil::IOBuf& buf) { _data.array.replies = NULL; return PARSE_OK; } - if (count > (int64_t)std::numeric_limits<uint32_t>::max()) { - LOG(ERROR) << "Too many sub replies! max count=2^32-1," - " actually=" << count; + int64_t array_size = sizeof(RedisReply) * count; Review Comment: array_size should better be modified with "const" -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@brpc.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@brpc.apache.org For additional commands, e-mail: dev-h...@brpc.apache.org