Skip to content

Commit

Permalink
fixes bug
Browse files Browse the repository at this point in the history
  • Loading branch information
actboy168 committed Aug 18, 2023
1 parent 4bcf6d3 commit c893685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3rd/lua-seri/lua-seri.c
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ seri_unpack(lua_State *L, void *buffer) {
struct read_block rb;
rball_init(&rb, (char *)buffer + 4, len);
lua_pushnil(L); // slot for ref table
rb.s.ref_index = 1;
rb.s.ref_index = top + 1;

int i;
for (i=0;;i++) {
Expand Down

0 comments on commit c893685

Please sign in to comment.