From 2e205e76a4becf73c22bc386b1a93ee627ea074c Mon Sep 17 00:00:00 2001 From: benchea dan Date: Thu, 16 Mar 2023 10:55:30 +0200 Subject: [PATCH 1/2] fix html page --- ngx_http_js_challenge.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ngx_http_js_challenge.c b/ngx_http_js_challenge.c index f5c8889..c5e67ad 100644 --- a/ngx_http_js_challenge.c +++ b/ngx_http_js_challenge.c @@ -174,7 +174,8 @@ static char *ngx_http_js_challenge_merge_loc_conf(ngx_conf_t *cf, void *parent, } conf->html = ngx_palloc(cf->pool, info.st_size); - int ret = read(fd, conf->html, info.st_size); + memset(conf->html,'\0',info.st_size); + int ret = read(fd, conf->html, info.st_size-1); close(fd); if (ret < 0) { ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, "js_challenge_html: Could not read file '%s': %s", path, From df4941408d2044d655613ea7078a167a7b0072dd Mon Sep 17 00:00:00 2001 From: benchea dan Date: Fri, 17 Mar 2023 08:11:11 +0200 Subject: [PATCH 2/2] set *(conf->html+ret) to '\0'; --- ngx_http_js_challenge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ngx_http_js_challenge.c b/ngx_http_js_challenge.c index c5e67ad..5adf14d 100644 --- a/ngx_http_js_challenge.c +++ b/ngx_http_js_challenge.c @@ -174,8 +174,8 @@ static char *ngx_http_js_challenge_merge_loc_conf(ngx_conf_t *cf, void *parent, } conf->html = ngx_palloc(cf->pool, info.st_size); - memset(conf->html,'\0',info.st_size); int ret = read(fd, conf->html, info.st_size-1); + *(conf->html+ret) = '\0'; close(fd); if (ret < 0) { ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, "js_challenge_html: Could not read file '%s': %s", path,