diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2023-08-23 15:14:03 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2023-08-23 15:14:03 -0300 |
commit | c815c2f0eb7a4ac01d4f664f3db44c199ee4e211 (patch) | |
tree | 63cdeea69af0df9ff82303d05c517068eb54e56e /lundump.c | |
parent | ab6a94952215b1f66436d8eeebded1dad9fa5409 (diff) | |
parent | 9363a8b9901a5643c9da061ea8dda8a86cdc7ef1 (diff) | |
download | lua-c815c2f0eb7a4ac01d4f664f3db44c199ee4e211.tar.gz lua-c815c2f0eb7a4ac01d4f664f3db44c199ee4e211.tar.bz2 lua-c815c2f0eb7a4ac01d4f664f3db44c199ee4e211.zip |
Merge branch 'master' into nextversion
Diffstat (limited to 'lundump.c')
-rw-r--r-- | lundump.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |