Skip to content

Commit d7a54b0

Browse files
committed
Miscalculation on stack reservations. Maybe fixed?
1 parent fe6dcd3 commit d7a54b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/asm/i386/make_context_i386_sysv_elf_gas.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ yafl_make_context:
4242
andl $-16, %eax
4343

4444
/* reserve space for context-data on context-stack, and align the stack */
45-
leal -0x34(%eax), %eax
45+
leal -0x30(%eax), %eax
4646

4747
/* third arg of yafl_make_context() == address of context-function */
4848
/* stored in EBX */

0 commit comments

Comments
 (0)