commit | 7e2a10836c0455cb3ca397f89b8280496148d571 | [log] [tgz] |
---|---|---|
author | Julia Lawall <julia@diku.dk> | Thu Nov 12 23:08:36 2009 +0100 |
committer | Jiri Kosina <jkosina@suse.cz> | Thu Feb 04 11:55:46 2010 +0100 |
tree | 26a00a1581727fb1177e509826bedd727b53a265 | |
parent | fe9a2302230fa287715a11a3d3aec74eec75a6a4 [diff] |
fs/qnx4: decrement sizeof size in strncmp As an identical match is wanted in this case, strcmp can be used instead. The semantic match that lead to detecting this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression foo; constant char *abc; @@ *strncmp(foo, abc, sizeof(abc)) // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: Anders Larsen <al@alarsen.net> Signed-off-by: Jiri Kosina <jkosina@suse.cz>