Skip to content

Commit

Permalink
bugfix for <ntrppe@dont-email.me>
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonErtl committed Oct 15, 2016
1 parent f977115 commit 08a14f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engine/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1191,7 +1191,8 @@ static void reserve_code_super(PrimNum origs[], int ninsts)
if (i>0)
size += priminfos[origs[i-1]].restlength+goto_len+CODE_ALIGNMENT-1;
}
size += priminfos[origs[i-1]].restlength+goto_len;
if (i>0)
size += priminfos[origs[i-1]].restlength+goto_len;
reserve_code_space(size);
}
#endif
Expand Down

0 comments on commit 08a14f0

Please sign in to comment.