Commit 32c46561 authored by Julia Lawall's avatar Julia Lawall

drop unneeded *s

Kfree.cocci only supports org and report mode, so the *s (used for
context mode) are not useful.
Signed-off-by: default avatarJulia Lawall <Julia.Lawall@inria.fr>
parent 5d2db9bb
......@@ -22,9 +22,9 @@ position p1;
@@
(
* kfree@p1(E)
kfree@p1(E)
|
* kfree_sensitive@p1(E)
kfree_sensitive@p1(E)
)
@print expression@
......@@ -66,9 +66,9 @@ position ok;
while (1) { ...
(
* kfree@ok(E)
kfree@ok(E)
|
* kfree_sensitive@ok(E)
kfree_sensitive@ok(E)
)
... when != break;
when != goto l;
......@@ -84,9 +84,9 @@ position free.p1!=loop.ok,p2!={print.p,sz.p};
@@
(
* kfree@p1(E,...)
kfree@p1(E,...)
|
* kfree_sensitive@p1(E,...)
kfree_sensitive@p1(E,...)
)
...
(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment