Remove debug code

This commit is contained in:
Alexey Melnichuk 2021-01-07 01:15:57 +03:00
parent 9ecfead5d0
commit e69056cf3f

View File

@ -128,7 +128,6 @@ static int lcurl_easy_to_s(lua_State *L){
}
static int lcurl_easy_cleanup_storage(lua_State *L, lcurl_easy_t *p){
int top = lua_gettop(L);
int i;
if(p->storage != LUA_NOREF){
@ -191,8 +190,6 @@ static int lcurl_easy_cleanup_storage(lua_State *L, lcurl_easy_t *p){
for(i = 0; i < LCURL_LIST_COUNT; ++i){
p->lists[i] = LUA_NOREF;
}
assert(lua_gettop(L) == top);
}
static int lcurl_easy_cleanup(lua_State *L){