Эх сурвалжийг харах

staging: lustre: ldlm: ldlm_lib: remove unneeded null test before free

Kfree can cope with a null argument, so drop null tests.

The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@ expression ptr; @@

- if (ptr != NULL)
  kfree(ptr);
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Julia Lawall 10 жил өмнө
parent
commit
1134507ca4

+ 1 - 2
drivers/staging/lustre/lustre/ldlm/ldlm_lib.c

@@ -119,8 +119,7 @@ static int import_set_conn(struct obd_import *imp, struct obd_uuid *uuid,
 	spin_unlock(&imp->imp_lock);
 	spin_unlock(&imp->imp_lock);
 	return 0;
 	return 0;
 out_free:
 out_free:
-	if (imp_conn)
-		kfree(imp_conn);
+	kfree(imp_conn);
 out_put:
 out_put:
 	ptlrpc_connection_put(ptlrpc_conn);
 	ptlrpc_connection_put(ptlrpc_conn);
 	return rc;
 	return rc;