commit | b48c59a5a37faa01b4855d7abd9f3f0cc423c1da | [log] [tgz] |
---|---|---|
author | Amaury Denoyelle <adenoyelle@haproxy.com> | Thu Nov 18 14:40:26 2021 +0100 |
committer | Amaury Denoyelle <adenoyelle@haproxy.com> | Fri Nov 19 15:10:46 2021 +0100 |
tree | 458e9b02661c2c612bdc0ac37cf4bf26c5eb95a5 | |
parent | ed66b0f04a39581fcb0af314b57e19c3397c4714 [diff] |
BUG/MINOR: hq-interop: fix potential NULL dereference Test return from htx_add_stline() and returns an error if NULL.
diff --git a/src/hq_interop.c b/src/hq_interop.c index 0f878f0..075e785 100644 --- a/src/hq_interop.c +++ b/src/hq_interop.c
@@ -38,6 +38,9 @@ path.len = ptr - path.ptr; sl = htx_add_stline(htx, HTX_BLK_REQ_SL, 0, ist("GET"), path, ist("HTTP/1.0")); + if (!sl) + return -1; + sl->flags |= HTX_SL_F_BODYLESS; sl->info.req.meth = find_http_meth("GET", 3);