aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorEli Zaretskii2016-10-12 18:24:21 +0300
committerEli Zaretskii2016-10-12 18:24:21 +0300
commit59c5f36acfcbec4f6119996f7b80383bf86125d4 (patch)
tree5bf6f4fff4f632fd7088603ababf331175de0d9a /lib-src
parent1dd54e3eef7543720eff161457677a35fae2435c (diff)
downloademacs-59c5f36acfcbec4f6119996f7b80383bf86125d4.tar.gz
emacs-59c5f36acfcbec4f6119996f7b80383bf86125d4.zip
* lib-src/etags.c (invalidate_nodes): Remove a redundant nullp test.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/etags.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c
index 0479f8e4ebd..e5d76d4c591 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -2267,7 +2267,7 @@ invalidate_nodes (fdesc *badfdp, node **npp)
2267 free_tree (np); /* free it */ 2267 free_tree (np); /* free it */
2268 2268
2269 /* Continue with rest of tree. */ 2269 /* Continue with rest of tree. */
2270 np = np_parent ? np_parent->left : NULL; 2270 np = np_parent->left;
2271 } 2271 }
2272 } 2272 }
2273 *npp = super_root.left; 2273 *npp = super_root.left;