mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
net: Remove unnecessary NULL check in scm_destroy().
All callers provide a non-NULL scm argument. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5889335c50
commit
2a6c8c7998
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ static __inline__ void scm_destroy_cred(struct scm_cookie *scm)
|
|||
static __inline__ void scm_destroy(struct scm_cookie *scm)
|
||||
{
|
||||
scm_destroy_cred(scm);
|
||||
if (scm && scm->fp)
|
||||
if (scm->fp)
|
||||
__scm_destroy(scm);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue