summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/linux/prctl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/linux/prctl.c b/src/linux/prctl.c
index 1f8589e1..19f4267c 100644
--- a/src/linux/prctl.c
+++ b/src/linux/prctl.c
@@ -9,5 +9,6 @@ int prctl(int op, ...)
va_list ap;
va_start(ap, op);
for (i=0; i<4; i++) x[i] = va_arg(ap, unsigned long);
+ va_end(ap);
return syscall(SYS_prctl, op, x[0], x[1], x[2], x[3]);
}