mirror of
https://github.com/fluencelabs/musl
synced 2025-06-28 22:22:01 +00:00
fix missing va_end in prctl syscall wrapper
This commit is contained in:
@ -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]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user