This is an automated email from the ASF dual-hosted git repository.
zwoop pushed a commit to branch 9.1.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/9.1.x by this push:
new 83d1629 Do not delete the continuation twice (#7862)
83d1629 is described below
commit 83d1629eda423cc00c67688edc3a44efa007146e
Author: Vijay Mamidi <[email protected]>
AuthorDate: Mon May 24 16:29:05 2021 -0700
Do not delete the continuation twice (#7862)
(cherry picked from commit f80ed735483b489be668a320bec5b9da97516be8)
---
plugins/background_fetch/background_fetch.cc | 2 --
1 file changed, 2 deletions(-)
diff --git a/plugins/background_fetch/background_fetch.cc
b/plugins/background_fetch/background_fetch.cc
index 13aaff4..cc5c7fd 100644
--- a/plugins/background_fetch/background_fetch.cc
+++ b/plugins/background_fetch/background_fetch.cc
@@ -657,8 +657,6 @@ void
TSRemapDeleteInstance(void *ih)
{
BgFetchConfig *config = static_cast<BgFetchConfig *>(ih);
-
- TSContDestroy(config->getCont());
delete config;
}