This commit is contained in:
Kartik K. Agaram 2022-01-03 13:24:21 -08:00
parent f6cf8f801c
commit 1c78ab3d2e
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ void assign_call_graph_depth_to_name(lua_State* L, int depth, const char* name)
lua_setfield(L, cgt, name);
}
// clean up
lua_pop(L, 1); // key
lua_pop(L, 1); // value
lua_pop(L, 1); // table
}