diff options
author | Pedro Martelletto <pedro@cvs.openbsd.org> | 2005-10-10 15:55:08 +0000 |
---|---|---|
committer | Pedro Martelletto <pedro@cvs.openbsd.org> | 2005-10-10 15:55:08 +0000 |
commit | 5deefffdfbd3016f1aaffb097aeeb184c469b729 (patch) | |
tree | 1c95534fd62617afc2dc89a5918855e38545295b | |
parent | c419fc5f0f7be421a361b46f4a7ed42ce5e77ec2 (diff) |
Use free(9) to free memory allocated with malloc(9), okay krw@, marius@
-rw-r--r-- | sys/ntfs/ntfs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ntfs/ntfs_vfsops.c b/sys/ntfs/ntfs_vfsops.c index fb33ac2fa0a..230bb2b96ca 100644 --- a/sys/ntfs/ntfs_vfsops.c +++ b/sys/ntfs/ntfs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntfs_vfsops.c,v 1.9 2005/05/21 18:05:58 brad Exp $ */ +/* $OpenBSD: ntfs_vfsops.c,v 1.10 2005/10/10 15:55:07 pedro Exp $ */ /* $NetBSD: ntfs_vfsops.c,v 1.7 2003/04/24 07:50:19 christos Exp $ */ /*- @@ -795,7 +795,7 @@ ntfs_unmount( mp->mnt_data = NULL; mp->mnt_flag &= ~MNT_LOCAL; free(ntmp->ntm_ad, M_NTFSMNT); - FREE(ntmp, M_NTFSMNT); + free(ntmp, M_NTFSMNT); return (error); } |