diff options
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/clone.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/clone.S b/sysdeps/unix/sysv/linux/i386/clone.S index 64c0778fd7..8f655a7305 100644 --- a/sysdeps/unix/sysv/linux/i386/clone.S +++ b/sysdeps/unix/sysv/linux/i386/clone.S @@ -69,6 +69,8 @@ ENTRY (BP_SYM (__clone)) It will be popped off in the child in the ebx frobbing below. */ movl FUNC(%esp),%eax movl %eax,4(%ecx) + /* Don't leak any information. */ + movl $0,(%ecx) /* Do the system call */ pushl %ebx |