Remove check for NULL prior to free(9) and m_freem(9).

Approved by:	cperciva (mentor)
This commit is contained in:
eadler 2013-03-04 02:21:34 +00:00
parent ed67ac528d
commit a0bd41720a
3 changed files with 5 additions and 10 deletions

View File

@ -386,8 +386,7 @@ linprocfs_domtab(PFS_FILL_ARGS)
sbuf_printf(sb, " 0 0\n");
}
mtx_unlock(&mountlist_mtx);
if (flep != NULL)
free(flep, M_TEMP);
free(flep, M_TEMP);
return (error);
}
@ -447,8 +446,7 @@ linprocfs_dopartitions(PFS_FILL_ARGS)
}
g_topology_unlock();
if (flep != NULL)
free(flep, M_TEMP);
free(flep, M_TEMP);
return (error);
}

View File

@ -517,8 +517,7 @@ eof:
td->td_retval[0] = nbytes - resid;
out:
if (cookies)
free(cookies, M_TEMP);
free(cookies, M_TEMP);
VOP_UNLOCK(vp, 0);
foffset_unlock(fp, off, 0);

View File

@ -1443,10 +1443,8 @@ out:
bad:
free(iov, M_IOV);
if (control != NULL)
m_freem(control);
if (linux_cmsg != NULL)
free(linux_cmsg, M_TEMP);
m_freem(control);
free(linux_cmsg, M_TEMP);
return (error);
}