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_output.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 '')
| -rw-r--r-- | src/event/quic/ngx_event_quic_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/quic/ngx_event_quic_output.c b/src/event/quic/ngx_event_quic_output.c index b72d3319e..720b8fccc 100644 --- a/src/event/quic/ngx_event_quic_output.c +++ b/src/event/quic/ngx_event_quic_output.c @@ -961,7 +961,7 @@ ngx_quic_send_early_cc(ngx_connection_t *c, ngx_quic_header_t *inpkt, return NGX_ERROR; } - if (ngx_quic_keys_set_initial_secret(c->pool, pkt.keys, &inpkt->dcid) + if (ngx_quic_keys_set_initial_secret(pkt.keys, &inpkt->dcid, c->log) != NGX_OK) { return NGX_ERROR; |
