Tag: 609234e3b6d69315b5cd511b66435d733204e779

target: move the dereference below the NULL test

Author: Wei Yongjun <yongjun_wei@trendmicro.com.cn> The dereference should be moved below the NULL test. spatch with a semantic match is used to found this. (http://coccinelle.lip6.fr/) Signed-off-by: Wei Yongjun Signed-off-by: Nicholas Bellinger — drivers/target/target_core_pr.c | 10 ++++++—- 1 file changed, 6 insertions(+), 4 deletions(-)   diff –git a/drivers/target/target_core_pr.c b/drivers/target/target_core_pr.c index 3f8aac3..8c323a9 100644 — a/drivers/target/target_core_pr.c +++ b/drivers/target/target_core_pr.c @@ …

Continue reading