Skip to content

Commit 8586ea9

Browse files
JuliaLawallJiri Kosina
authored andcommitted
pktcdvd: fix error return code
Set the return variable to an error code as done elsewhere in the function. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> ( if@p1 (\(ret < 0\|ret != 0\)) { ... return ret; } | ret@p1 = 0 ) ... when != ret = e1 when != &ret *if(...) { ... when != ret = e2 when forall return ret; } // </smpl> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
1 parent 644ff18 commit 8586ea9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

drivers/block/pktcdvd.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,9 @@ static int pkt_generic_packet(struct pktcdvd_device *pd, struct packet_command *
706706
WRITE : READ, __GFP_WAIT);
707707

708708
if (cgc->buflen) {
709-
if (blk_rq_map_kern(q, rq, cgc->buffer, cgc->buflen, __GFP_WAIT))
709+
ret = blk_rq_map_kern(q, rq, cgc->buffer, cgc->buflen,
710+
__GFP_WAIT);
711+
if (ret)
710712
goto out;
711713
}
712714

0 commit comments

Comments
 (0)