mirror of
https://github.com/fluencelabs/redis
synced 2025-06-12 16:51:22 +00:00
Static buffer in client struct has a constant size
This commit is contained in:
@ -313,8 +313,7 @@ typedef struct redisClient {
|
||||
|
||||
/* Response buffer */
|
||||
int bufpos;
|
||||
int buflen;
|
||||
char buf[];
|
||||
char buf[REDIS_REPLY_CHUNK_BYTES];
|
||||
} redisClient;
|
||||
|
||||
struct saveparam {
|
||||
|
Reference in New Issue
Block a user