* lib-src/etags.c (invalidate_nodes): Remove a redundant nullp test.
This commit is contained in:
parent
1dd54e3eef
commit
59c5f36acf
1 changed files with 1 additions and 1 deletions
|
@ -2267,7 +2267,7 @@ invalidate_nodes (fdesc *badfdp, node **npp)
|
|||
free_tree (np); /* free it */
|
||||
|
||||
/* Continue with rest of tree. */
|
||||
np = np_parent ? np_parent->left : NULL;
|
||||
np = np_parent->left;
|
||||
}
|
||||
}
|
||||
*npp = super_root.left;
|
||||
|
|
Loading…
Add table
Reference in a new issue