linux_getdents, linux_readdir: fix mismatch between malloc and free tags

MFC after:	3 days
This commit is contained in:
Andriy Gapon 2017-06-26 09:13:25 +00:00
parent c20b00c6af
commit 16454bee3a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=320353

View File

@ -381,9 +381,9 @@ linux_getdents(struct thread *td, struct linux_getdents_args *args)
td->td_retval[0] = retval;
out:
free(lbuf, M_LINUX);
free(lbuf, M_TEMP);
out1:
free(buf, M_LINUX);
free(buf, M_TEMP);
return (error);
}
@ -507,9 +507,9 @@ linux_readdir(struct thread *td, struct linux_readdir_args *args)
if (error == 0)
td->td_retval[0] = linuxreclen;
free(lbuf, M_LINUX);
free(lbuf, M_TEMP);
out:
free(buf, M_LINUX);
free(buf, M_TEMP);
return (error);
}
#endif /* __i386__ || (__amd64__ && COMPAT_LINUX32) */