net: Remove unnecessary NULL check in scm_destroy().
authorDavid S. Miller <davem@davemloft.net>
Mon, 24 Sep 2012 19:52:33 +0000 (15:52 -0400)
committerDavid S. Miller <davem@davemloft.net>
Mon, 24 Sep 2012 19:52:33 +0000 (15:52 -0400)
All callers provide a non-NULL scm argument.

Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/scm.h

index 456695f..975cca0 100644 (file)
@@ -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);
 }