summaryrefslogtreecommitdiffstats
path: root/sys/alpha/osf1/osf1_mount.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/alpha/osf1/osf1_mount.c')
-rw-r--r--sys/alpha/osf1/osf1_mount.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/sys/alpha/osf1/osf1_mount.c b/sys/alpha/osf1/osf1_mount.c
index 05c91ff..d0ef281 100644
--- a/sys/alpha/osf1/osf1_mount.c
+++ b/sys/alpha/osf1/osf1_mount.c
@@ -170,12 +170,8 @@ osf1_getfsstat(td, uap)
count = uap->bufsize / sizeof(struct osf1_statfs);
size = count * sizeof(struct statfs);
- if (size > 0)
- buf = malloc(size, M_TEMP, M_WAITOK);
- else
- buf = NULL;
- error = kern_getfsstat(td, buf, size, UIO_SYSSPACE, flags);
- if (buf != NULL) {
+ error = kern_getfsstat(td, &buf, size, UIO_SYSSPACE, flags);
+ if (size > 0) {
count = td->td_retval[0];
sp = buf;
while (count > 0 && error == 0) {
OpenPOWER on IntegriCloud