BUG/MEDIUM: httpclient: replace ist0 by istptr
authorWilliam Lallemand <wlallemand@haproxy.org>
Sun, 26 Sep 2021 16:12:43 +0000 (18:12 +0200)
committerWilliam Lallemand <wlallemand@haproxy.org>
Sun, 26 Sep 2021 16:19:55 +0000 (18:19 +0200)
commit614e68337d9f2c8821a104bfb188fb6540b52785
treeb2c43fb6aad03d3517d8aef0dd9399afbf39aee0
parent4a4e663771f8d3644b05ad8eab30fe6362d1a45c
BUG/MEDIUM: httpclient: replace ist0 by istptr

ASAN reported a buffer overflow in the httpclient. This overflow is the
consequence of ist0() which is incorrect here.

Replace all occurences of ist0() by istptr() which is more appropried
here since all ist in the httpclient were created from strings.
src/http_client.c