comparison src/http/v3/ngx_http_v3_parse.c @ 8755:5c86189a1c1b quic

Merged with the default branch.
author Ruslan Ermilov <ru@nginx.com>
date Fri, 24 Dec 2021 15:53:59 +0300
parents d6e191a583cc
children 81a3429db8b0
comparison
equal deleted inserted replaced
8730:0433e69f5425 8755:5c86189a1c1b
636 } 636 }
637 637
638 ch = *b->pos++; 638 ch = *b->pos++;
639 639
640 if (st->huffman) { 640 if (st->huffman) {
641 if (ngx_http_v2_huff_decode(&st->huffstate, &ch, 1, &st->last, 641 if (ngx_http_huff_decode(&st->huffstate, &ch, 1, &st->last,
642 st->length == 1, c->log) 642 st->length == 1, c->log)
643 != NGX_OK) 643 != NGX_OK)
644 { 644 {
645 return NGX_ERROR; 645 return NGX_ERROR;
646 } 646 }
647 647