diff options
| author | Vladimir Homutov <vl@nginx.com> | 2022-07-27 17:16:40 +0400 |
|---|---|---|
| committer | Vladimir Homutov <vl@nginx.com> | 2022-07-27 17:16:40 +0400 |
| commit | 93c21be4d6184842b20541be190c630ec042b66a (patch) | |
| tree | f946efc625dbe11bf507821a1b0c4a0711aa3720 /src/event/quic/ngx_event_quic.c | |
| parent | 16bb8459d0118a7745751efd3388e117ee69146c (diff) | |
| download | nginx-93c21be4d6184842b20541be190c630ec042b66a.tar.gz nginx-93c21be4d6184842b20541be190c630ec042b66a.tar.bz2 | |
QUIC: avoided pool usage in ngx_quic_protection.c.
Diffstat (limited to 'src/event/quic/ngx_event_quic.c')
| -rw-r--r-- | src/event/quic/ngx_event_quic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/quic/ngx_event_quic.c b/src/event/quic/ngx_event_quic.c index 834e7935f..e82fe129a 100644 --- a/src/event/quic/ngx_event_quic.c +++ b/src/event/quic/ngx_event_quic.c @@ -325,7 +325,7 @@ ngx_quic_new_connection(ngx_connection_t *c, ngx_quic_conf_t *conf, } } - if (ngx_quic_keys_set_initial_secret(c->pool, qc->keys, &pkt->dcid) + if (ngx_quic_keys_set_initial_secret(qc->keys, &pkt->dcid, c->log) != NGX_OK) { return NULL; |
