Hi Devs,
I was going through Clang/Static Analyser in particular
PthreadLockChecker.
There I have find this line
https://github.com/llvm-mirror/clang/blob/master/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp#L115
which I think could be modified like this
if (CE->getNumArgs() !=1)
return;
since all of the lock/unlock/destroy function is having only single arguments.
Even a simple grep shows that only CE->getArg(0) is used in the
particular source file.
Please clarify on this.
./Kamlesh