diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-09-27 16:47:00 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-09-27 16:47:00 -0400 |
commit | f135ef3f343b824c5039e3dbbc31b5545fbe7a12 (patch) | |
tree | f1e6eb77d4c62b9693e32e34258d553d2eb75fe6 | |
parent | aef84ca7ec87ed21c2a2d5eecf3b4bbd6cbe3db9 (diff) | |
download | musl-f135ef3f343b824c5039e3dbbc31b5545fbe7a12.tar.gz musl-f135ef3f343b824c5039e3dbbc31b5545fbe7a12.tar.xz musl-f135ef3f343b824c5039e3dbbc31b5545fbe7a12.zip |
fix missing va_end in prctl syscall wrapper
-rw-r--r-- | src/linux/prctl.c | 1 |
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]); } |