This is an automated email from the ASF dual-hosted git repository. zwoop pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit 9eee26326829e046711649bdbf3deccdee319a80 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; }
