File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -1029,7 +1029,6 @@ static int lcurl_easy_pause(lua_State *L){
10291029}
10301030
10311031static int lcurl_easy_setdata (lua_State * L ){
1032- lcurl_easy_t * p = lcurl_geteasy (L );
10331032 lua_settop (L , 2 );
10341033 lua_pushvalue (L , 1 );
10351034 lua_insert (L , 2 );
@@ -1038,7 +1037,6 @@ static int lcurl_easy_setdata(lua_State *L){
10381037}
10391038
10401039static int lcurl_easy_getdata (lua_State * L ){
1041- lcurl_easy_t * p = lcurl_geteasy (L );
10421040 lua_settop (L , 1 );
10431041 lua_rawget (L , LCURL_USERVALUES );
10441042 return 1 ;
Original file line number Diff line number Diff line change @@ -462,7 +462,6 @@ static int lcurl_multi_setopt(lua_State *L){
462462}
463463
464464static int lcurl_multi_setdata (lua_State * L ){
465- lcurl_multi_t * p = lcurl_getmulti (L );
466465 lua_settop (L , 2 );
467466 lua_pushvalue (L , 1 );
468467 lua_insert (L , 2 );
@@ -471,7 +470,6 @@ static int lcurl_multi_setdata(lua_State *L){
471470}
472471
473472static int lcurl_multi_getdata (lua_State * L ){
474- lcurl_multi_t * p = lcurl_getmulti (L );
475473 lua_settop (L , 1 );
476474 lua_rawget (L , LCURL_USERVALUES );
477475 return 1 ;
You can’t perform that action at this time.
0 commit comments