提交 f135ef3f 编写于 作者: R Rich Felker

fix missing va_end in prctl syscall wrapper

上级 aef84ca7
......@@ -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]);
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册