lgtm: warn about strerror() use

This commit is contained in:
Lennart Poettering 2019-04-05 15:31:34 +02:00 committed by Zbigniew Jędrzejewski-Szmek
parent 9f717d42cb
commit 9ff46eded2
1 changed files with 3 additions and 0 deletions

View File

@ -38,6 +38,9 @@ predicate potentiallyDangerousFunction(Function f, string message) {
) or (
f.getQualifiedName() = "ntohs" and
message = "Call to ntohs() is confusing. Use be16toh() instead."
) or (
f.getQualifiedName() = "strerror" and
message = "Call to strerror() is not thread-safe. Use strerror_r() or printf()'s %m format string instead."
)
}