MINOR: stream-int: Be able to allocate a CS without connection
si_alloc_cs() function may now be called without connection. It is mandatory
to allocate the backend conn-stream during the stream creation.
diff --git a/include/haproxy/stream_interface.h b/include/haproxy/stream_interface.h
index acc22e7..da07127 100644
--- a/include/haproxy/stream_interface.h
+++ b/include/haproxy/stream_interface.h
@@ -427,7 +427,7 @@
si_release_endpoint(si);
- cs = cs_new(conn, conn->target);
+ cs = cs_new(conn, (conn ? conn->target : NULL));
if (cs)
si_attach_cs(si, cs);