summaryrefslogtreecommitdiffhomepage
path: root/src/event/ngx_event_openssl.c
diff options
context:
space:
mode:
authorAndrew Clayton <ac@sigsegv.uk>2025-06-26 22:20:46 +0100
committerAndrew Clayton <a.clayton@nginx.com>2025-06-26 22:24:01 +0100
commit0c5bb8a5e10657cec505729596c8b2f0c794cc8f (patch)
tree1695c1ba5698c539795bf265f56f9b606dbced23 /src/event/ngx_event_openssl.c
parent4eaecc5e8aa7bbaf9e58bf56560a8b1e67d0a8b7 (diff)
downloadnginx-no-short-read-checks.tar.gz
nginx-no-short-read-checks.tar.bz2
Remove short read checksno-short-read-checks
This removes a bunch of checks for cases where we _read_ less bytes than asked for. There are several reasons why we may _read_ less bytes including reading data from a network file system. This has proven to be an issue. Closes: https://github.com/nginx/nginx/issues/265 Signed-off-by: Andrew Clayton <ac@sigsegv.uk>
Diffstat (limited to 'src/event/ngx_event_openssl.c')
-rw-r--r--src/event/ngx_event_openssl.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/event/ngx_event_openssl.c b/src/event/ngx_event_openssl.c
index a7b389444..df4c2eece 100644
--- a/src/event/ngx_event_openssl.c
+++ b/src/event/ngx_event_openssl.c
@@ -4407,13 +4407,6 @@ ngx_ssl_session_ticket_keys(ngx_conf_t *cf, ngx_ssl_t *ssl, ngx_array_t *paths)
goto failed;
}
- if ((size_t) n != size) {
- ngx_conf_log_error(NGX_LOG_CRIT, cf, 0,
- ngx_read_file_n " \"%V\" returned only "
- "%z bytes instead of %uz", &file.name, n, size);
- goto failed;
- }
-
key = ngx_array_push(keys);
if (key == NULL) {
goto failed;