From: David S. Miller Date: Mon, 24 Sep 2012 19:52:33 +0000 (-0400) Subject: net: Remove unnecessary NULL check in scm_destroy(). X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=2a6c8c7998f95b140f3d3c7ac5dce2fbd6d403e3;p=deliverable%2Flinux.git net: Remove unnecessary NULL check in scm_destroy(). All callers provide a non-NULL scm argument. Signed-off-by: David S. Miller --- diff --git a/include/net/scm.h b/include/net/scm.h index 456695f5cbc4..975cca01048b 100644 --- a/include/net/scm.h +++ b/include/net/scm.h @@ -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); }