ntfsmount: fix small memleak

edge.strict_endians
cha0smaster 2005-08-08 13:14:41 +00:00
parent 59e70eab49
commit 6a9aca9a22
1 changed files with 2 additions and 1 deletions

View File

@ -558,8 +558,9 @@ exit:
return res;
}
static int ntfs_fuse_rm_file(char *file __attribute__((unused)))
static int ntfs_fuse_rm_file(char *file)
{
free(file);
return -EOPNOTSUPP;
}