From c4b2704b17775f5dbe42997a60fa900d16d30d1d Mon Sep 17 00:00:00 2001 From: Masaori Koshiba Date: Tue, 4 Oct 2016 17:56:45 +0900 Subject: [PATCH] TS-4905: Set parent NULL after destroy() is called (cherry picked from commit 60d3d1fc542f9d33317e35ced399bef1f9c89516) --- proxy/http/Http1ClientTransaction.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/proxy/http/Http1ClientTransaction.cc b/proxy/http/Http1ClientTransaction.cc index 2220e60a088..5097c8c1c23 100644 --- a/proxy/http/Http1ClientTransaction.cc +++ b/proxy/http/Http1ClientTransaction.cc @@ -67,6 +67,7 @@ Http1ClientTransaction::transaction_done() // If the parent session is not in the closed state, the destroy will not occur. if (parent) { parent->destroy(); + parent = NULL; } }