code refactoring
This commit is contained in:
parent
71c8669261
commit
2d3a232ef6
|
@ -340,7 +340,7 @@ void CheckNullPointer::nullPointerLinkedList()
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// is there any dereferencing occurring in the for statement
|
// is there any dereferencing occurring in the for statement
|
||||||
const Token* end2 = tok1->tokAt(1)->link();
|
const Token* end2 = tok1->linkAt(1);
|
||||||
for (const Token *tok2 = tok1->tokAt(2); tok2 != end2; tok2 = tok2->next()) {
|
for (const Token *tok2 = tok1->tokAt(2); tok2 != end2; tok2 = tok2->next()) {
|
||||||
// Dereferencing a variable inside the "for" parentheses..
|
// Dereferencing a variable inside the "for" parentheses..
|
||||||
if (Token::Match(tok2, "%var% . %var%")) {
|
if (Token::Match(tok2, "%var% . %var%")) {
|
||||||
|
|
Loading…
Reference in New Issue