This is an automated email from the ASF dual-hosted git repository.

bcall pushed a commit to branch 8.0.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/8.0.x by this push:
     new a51fa91  Removed assignment of unused variable
a51fa91 is described below

commit a51fa918e4d2116e1349e4053c1f8f5bf2855605
Author: Bryan Call <bc...@apache.org>
AuthorDate: Fri Jul 6 11:51:48 2018 -0700

    Removed assignment of unused variable
    
    (cherry picked from commit a3874e8aa708af1f664b032be14dd451b2c1a42b)
---
 plugins/lua/ts_lua_fetch.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/plugins/lua/ts_lua_fetch.c b/plugins/lua/ts_lua_fetch.c
index f60f759..f76e990 100644
--- a/plugins/lua/ts_lua_fetch.c
+++ b/plugins/lua/ts_lua_fetch.c
@@ -582,15 +582,11 @@ ts_lua_destroy_fetch_multi_info(ts_lua_fetch_multi_info 
*fmi)
 static int
 ts_lua_fetch_multi_cleanup(ts_lua_async_item *ai)
 {
-  ts_lua_fetch_multi_info *fmi;
-
   if (ai->deleted) {
     return 0;
   }
 
   if (ai->data) {
-    fmi = (ts_lua_fetch_multi_info *)ai->data;
-
     ai->data = NULL;
     TSContDestroy(ai->contp);
     ai->contp = NULL;

Reply via email to