]> git.ipfire.org Git - thirdparty/systemd.git/blame - coccinelle/const-strlen.disabled
hashmap: avoid using TLS in a destructor
[thirdparty/systemd.git] / coccinelle / const-strlen.disabled
CommitLineData
fbd0b64f
LP
1@@
2constant s;
3@@
33af88cf
FS
4(
5#define STRLEN
6&
fbd0b64f
LP
7- sizeof(s)-1
8+ STRLEN(s)
33af88cf 9)
fbd0b64f
LP
10@@
11constant s;
12@@
13- strlen(s)
14+ STRLEN(s)