]> granicus.if.org Git - curl/commit
http: clarify header buffer size calculation
authorDaniel Gustafsson <daniel@yesql.se>
Mon, 24 Jun 2019 21:30:31 +0000 (23:30 +0200)
committerDaniel Gustafsson <daniel@yesql.se>
Mon, 24 Jun 2019 21:35:06 +0000 (23:35 +0200)
commitb96282010e4b8bf373c1fb631a5e305442af634a
tree415c80403a79252d3cc6807c6fddfc649bc32ed8
parent1853c884ef28197339e57f4ec405630944300855
http: clarify header buffer size calculation

The header buffer size calculation can from static analysis seem to
overlow as it performs an addition between two size_t variables and
stores the result in a size_t variable. Overflow is however guarded
against elsewhere since the input to the addition is regulated by
the maximum read buffer size. Clarify this with a comment since the
question was asked.

Reviewed-by: Daniel Stenberg <daniel@haxx.se>
lib/http.c