提交 7e795ca7 编写于 作者: R Rich Felker

fix statvfs syscalls (missing size argument)

上级 66def4e7
......@@ -11,5 +11,5 @@ struct statvfs {
unsigned long f_frsize;
fsfilcnt_t f_favail;
unsigned long f_flag;
unsigned long __reserved[2];
unsigned long __reserved[3];
};
......@@ -4,7 +4,7 @@
int fstatvfs(int fd, struct statvfs *buf)
{
return syscall(SYS_fstatfs, fd, buf);
return syscall(SYS_fstatfs, fd, sizeof *buf, buf);
}
weak_alias(fstatvfs, fstatfs);
......
......@@ -4,7 +4,7 @@
int statvfs(const char *path, struct statvfs *buf)
{
return syscall(SYS_statfs, path, buf);
return syscall(SYS_statfs, path, sizeof *buf, buf);
}
weak_alias(statvfs, statfs);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册