From 00a0ec675a121457e932240dabd334a477002fb9 Mon Sep 17 00:00:00 2001 From: zhengchao Date: Tue, 16 Oct 2018 21:30:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=BF=98=E8=AE=B0=E5=88=9D?= =?UTF-8?q?=E5=A7=8B=E5=8C=96tailq=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin/protocol/http/src/http_entry.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/protocol/http/src/http_entry.cpp b/plugin/protocol/http/src/http_entry.cpp index 5e5ad50..8ecbd57 100644 --- a/plugin/protocol/http/src/http_entry.cpp +++ b/plugin/protocol/http/src/http_entry.cpp @@ -29,6 +29,7 @@ int http_connection_entry_open(const struct tfe_stream * stream, unsigned int th { struct http_connection_private * ht_conn = ALLOC(struct http_connection_private, 1); TAILQ_INIT(&ht_conn->hs_private_list); + TAILQ_INIT(&ht_conn->hs_private_orphan_list); ht_conn->stream = stream; *pme = (void *) ht_conn; return 0;