comparison src/event/quic/ngx_event_quic_tokens.c @ 8559:75daac63f798 quic

QUIC: fixed dead store assignment. Found by Clang Static Analyzer.
author Sergey Kandaurov <pluknet@nginx.com>
date Tue, 24 Aug 2021 13:03:46 +0300
parents 2029a30863e2
children 8f0f6407ae23
comparison
equal deleted inserted replaced
8558:e5a180511dec 8559:75daac63f798
257 if ((size_t)(tdec + total - p) < odcid.len) { 257 if ((size_t)(tdec + total - p) < odcid.len) {
258 goto bad_token; 258 goto bad_token;
259 } 259 }
260 260
261 odcid.data = p; 261 odcid.data = p;
262 p += odcid.len;
263 } 262 }
264 263
265 now = ngx_time(); 264 now = ngx_time();
266 265
267 if (now > exp) { 266 if (now > exp) {