You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ki...@apache.org on 2018/07/06 20:44:51 UTC

[trafficserver] branch master updated: Removed assignment of unused variable

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

kichan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


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

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

    Removed assignment of unused variable
---
 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;