From: Rich Felker Date: Tue, 27 Sep 2011 20:47:00 +0000 (-0400) Subject: fix missing va_end in prctl syscall wrapper X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=f135ef3f343b824c5039e3dbbc31b5545fbe7a12 fix missing va_end in prctl syscall wrapper --- 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]); }