fix missing va_end in prctl syscall wrapper

This commit is contained in:
Rich Felker 2011-09-27 16:47:00 -04:00
parent aef84ca7ec
commit f135ef3f34
1 changed files with 1 additions and 0 deletions

View File

@ -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]);
}