aboutsummaryrefslogtreecommitdiff
path: root/lundump.c
diff options
context:
space:
mode:
Diffstat (limited to 'lundump.c')
-rw-r--r--lundump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lundump.c b/lundump.c
index 1df15e53..0c93c995 100644
--- a/lundump.c
+++ b/lundump.c
@@ -131,7 +131,7 @@ static TString *loadStringN (LoadState *S, Proto *p) {
131 ts = luaS_createlngstrobj(L, size); /* create string */ 131 ts = luaS_createlngstrobj(L, size); /* create string */
132 setsvalue2s(L, L->top.p, ts); /* anchor it ('loadVector' can GC) */ 132 setsvalue2s(L, L->top.p, ts); /* anchor it ('loadVector' can GC) */
133 luaD_inctop(L); 133 luaD_inctop(L);
134 loadVector(S, getstr(ts), size); /* load directly in final place */ 134 loadVector(S, getlngstr(ts), size); /* load directly in final place */
135 L->top.p--; /* pop string */ 135 L->top.p--; /* pop string */
136 } 136 }
137 luaC_objbarrier(L, p, ts); 137 luaC_objbarrier(L, p, ts);