aboutsummaryrefslogtreecommitdiffstats
path: root/net/sctp
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2015-01-31 12:10:03 -0500
committerDavid S. Miller <davem@davemloft.net>2015-02-02 22:29:43 -0500
commit7d37d0c1591b95ec4e663f7c00eccd5938797a99 (patch)
treed4baedc4342665099f769f08c405c19dbb0bf3fe /net/sctp
parent193cdc4a041cedf82967390879d0b9bab5278e92 (diff)
net: sctp: Deletion of an unnecessary check before the function call "kfree"
The kfree() function tests whether its argument is NULL and then returns immediately. Thus the test around the call is not needed. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Acked-By: Neil Horman <nhorman@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp')
-rw-r--r--net/sctp/associola.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/sctp/associola.c b/net/sctp/associola.c
index 26d06dbcc1c8..197c3f59ecbf 100644
--- a/net/sctp/associola.c
+++ b/net/sctp/associola.c
@@ -391,8 +391,7 @@ void sctp_association_free(struct sctp_association *asoc)
391 sctp_asconf_queue_teardown(asoc); 391 sctp_asconf_queue_teardown(asoc);
392 392
393 /* Free pending address space being deleted */ 393 /* Free pending address space being deleted */
394 if (asoc->asconf_addr_del_pending != NULL) 394 kfree(asoc->asconf_addr_del_pending);
395 kfree(asoc->asconf_addr_del_pending);
396 395
397 /* AUTH - Free the endpoint shared keys */ 396 /* AUTH - Free the endpoint shared keys */
398 sctp_auth_destroy_keys(&asoc->endpoint_shared_keys); 397 sctp_auth_destroy_keys(&asoc->endpoint_shared_keys);