Julia Lawall 8f47428704 ataflop: adjust NULL test
dtp is derefenced on the lines above the test !dtp, and so it cannot be
NULL at this point.

A simplified version of the semantic match that finds this problem is as
follows: (http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@r@
expression x,E,E1;
identifier f,l;
position p1,p2;
@@

*x@p1->f = E1;
... when != x = E
    when != goto l;
(
*x@p2 == NULL
|
*x@p2 != NULL
)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Tejun Heo <tj@kernel.org>
2009-07-17 15:29:58 +09:00
..
2009-07-17 15:29:58 +09:00
2005-04-16 15:20:36 -07:00
2009-06-30 18:56:01 -07:00
2009-06-18 09:56:20 +02:00
2005-04-16 15:20:36 -07:00
2005-04-16 15:20:36 -07:00
2009-04-07 08:12:38 +02:00
2009-06-16 08:40:20 +02:00
2005-04-16 15:20:36 -07:00
2009-03-26 21:15:27 +01:00
2009-04-24 08:54:21 +02:00
2008-10-21 07:48:11 -04:00
2009-07-15 11:27:40 +09:00