Re: [PATCH 3/6] drivers/net/niu.c: adjust array index
From: David Miller <hidden>
Date: 2011-08-01 09:32:22
Also in:
kernel-janitors, linux-devicetree, lkml
From: David Miller <hidden>
Date: 2011-08-01 09:32:22
Also in:
kernel-janitors, linux-devicetree, lkml
From: Julia Lawall <redacted> Date: Thu, 28 Jul 2011 14:46:03 +0200
From: Julia Lawall <redacted> Convert array index from the loop bound to the loop index. A simplified version of the semantic patch that fixes this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression e1,e2,ar; @@ for(e1 = 0; e1 < e2; e1++) { <... ar[ - e2 + e1 ] ...> } // </smpl> Signed-off-by: Julia Lawall <redacted>
Applied.