CLEANUP: Apply ist.cocci
This is to make use of `chunk_istcat()`.
diff --git a/src/http_htx.c b/src/http_htx.c
index 6b06336..3535fa7 100644
--- a/src/http_htx.c
+++ b/src/http_htx.c
@@ -432,7 +432,7 @@
vsn = ist2(temp->area + meth.len, HTX_SL_REQ_VLEN(sl));
chunk_memcat(temp, uri.ptr, p.ptr - uri.ptr); /* uri: host part */
- chunk_memcat(temp, path.ptr, path.len); /* uri: new path */
+ chunk_istcat(temp, path); /* uri: new path */
chunk_memcat(temp, p.ptr + plen, p.len - plen); /* uri: QS part */
uri = ist2(temp->area + meth.len + vsn.len, uri.len - plen + path.len);
@@ -711,7 +711,7 @@
vsn = ist2(temp->area + meth.len, HTX_SL_REQ_VLEN(sl));
chunk_memcat(temp, uri.ptr, authority.ptr - uri.ptr);
- chunk_memcat(temp, host.ptr, host.len);
+ chunk_istcat(temp, host);
chunk_memcat(temp, istend(authority), istend(uri) - istend(authority));
uri = ist2(temp->area + meth.len + vsn.len, host.len + uri.len - authority.len); /* uri */