From bf84e0a2e987b77044d7969b189b70204f1e7b24 Mon Sep 17 00:00:00 2001 From: Yangyu Chen Date: Wed, 7 Jul 2021 23:03:21 +0800 Subject: [PATCH] fixed file_id size in common.c --- src/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.c b/src/common.c index 6d3024e..3d3b1d6 100644 --- a/src/common.c +++ b/src/common.c @@ -760,7 +760,7 @@ int fdfs_http_request_handler(struct fdfs_http_context *pContext) #define HTTPD_MAX_PARAMS 32 char *file_id_without_group; char *url; - char file_id[128]; + char file_id[530]; char uri[512]; int url_len; int uri_len;