mirror of
https://github.com/nginx/nginx.git
synced 2026-06-30 22:02:37 +00:00
QUIC: plug MSVC warning about potentially uninitialized variable.
This commit is contained in:
parent
885f50f773
commit
fd0b558ac8
1 changed files with 4 additions and 0 deletions
|
|
@ -178,6 +178,10 @@ ngx_quic_validate_token(ngx_connection_t *c, u_char *key,
|
|||
u_char addr_hash[20];
|
||||
u_char tdec[NGX_QUIC_MAX_TOKEN_SIZE];
|
||||
|
||||
#if NGX_SUPPRESS_WARN
|
||||
ngx_str_null(&odcid);
|
||||
#endif
|
||||
|
||||
/* Retry token or NEW_TOKEN in a previous connection */
|
||||
|
||||
cipher = EVP_aes_256_cbc();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue