Tag: 8a52da632ceb9d8b776494563df579e87b7b586b

[SCSI] aacraid: Eliminate use after free

Author: Julia Lawall <julia@diku.dk> The debugging code using the freed structure is moved before the kfree. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // @free@ expression E; position p; @@ kfree@p(E) @@ expression free.E, subE