Merge pull request #15470 from s-hadinger/Berry-fix-pointer-warning

Berry fix pointer warning
This commit is contained in:
s-hadinger 2022-04-26 23:28:48 +02:00 committed by GitHub
commit 1b21201402
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 5 deletions

View File

@ -214,8 +214,10 @@ static void save_proto_table(bvm *vm, void *fp, bproto *proto)
{
bproto **p = proto->ptab, **end;
save_long(fp, proto->nproto); /* proto count */
for (end = p + proto->nproto; p < end; ++p) {
save_proto(vm, fp, *p);
if (p) {
for (end = p + proto->nproto; p < end; ++p) {
save_proto(vm, fp, *p);
}
}
}
@ -223,9 +225,11 @@ static void save_upvals(void *fp, bproto *proto)
{
bupvaldesc *uv = proto->upvals, *end;
save_byte(fp, proto->nupvals); /* upvals count */
for (end = uv + proto->nupvals; uv < end; ++uv) {
save_byte(fp, uv->instack);
save_byte(fp, uv->idx);
if (uv) {
for (end = uv + proto->nupvals; uv < end; ++uv) {
save_byte(fp, uv->instack);
save_byte(fp, uv->idx);
}
}
}