Skip to content
Snippets Groups Projects
Commit 7e0c411b authored by Ted Kremenek's avatar Ted Kremenek
Browse files

[analyzer] Fix incorrect spelling of 'pthread_rwlock_trywrlock'. Patch by Jean Baptiste Noblot.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@199499 91177308-0d34-0410-b5e6-96231b3b80d8
parent b0734fd7
No related branches found
No related tags found
No related merge requests found
...@@ -69,7 +69,7 @@ void PthreadLockChecker::checkPostStmt(const CallExpr *CE, ...@@ -69,7 +69,7 @@ void PthreadLockChecker::checkPostStmt(const CallExpr *CE,
false, XNUSemantics); false, XNUSemantics);
else if (FName == "pthread_mutex_trylock" || else if (FName == "pthread_mutex_trylock" ||
FName == "pthread_rwlock_tryrdlock" || FName == "pthread_rwlock_tryrdlock" ||
FName == "pthread_rwlock_tryrwlock") FName == "pthread_rwlock_trywrlock")
AcquireLock(C, CE, state->getSVal(CE->getArg(0), LCtx), AcquireLock(C, CE, state->getSVal(CE->getArg(0), LCtx),
true, PthreadSemantics); true, PthreadSemantics);
else if (FName == "lck_mtx_try_lock" || else if (FName == "lck_mtx_try_lock" ||
...@@ -170,10 +170,10 @@ void PthreadLockChecker::ReleaseLock(CheckerContext &C, const CallExpr *CE, ...@@ -170,10 +170,10 @@ void PthreadLockChecker::ReleaseLock(CheckerContext &C, const CallExpr *CE,
if (!N) if (!N)
return; return;
BugReport *report = new BugReport(*BT_lor, BugReport *report = new BugReport(*BT_lor,
"This was not the most " "This was not the most "
"recently acquired lock. " "recently acquired lock. "
"Possible lock order " "Possible lock order "
"reversal", N); "reversal", N);
report->addRange(CE->getArg(0)->getSourceRange()); report->addRange(CE->getArg(0)->getSourceRange());
C.emitReport(report); C.emitReport(report);
return; return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment