emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 59c5f36: * lib-src/etags.c (invalidate_nodes): Remo


From: Eli Zaretskii
Subject: [Emacs-diffs] master 59c5f36: * lib-src/etags.c (invalidate_nodes): Remove a redundant nullp test.
Date: Wed, 12 Oct 2016 15:25:01 +0000 (UTC)

branch: master
commit 59c5f36acfcbec4f6119996f7b80383bf86125d4
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    * lib-src/etags.c (invalidate_nodes): Remove a redundant nullp test.
---
 lib-src/etags.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib-src/etags.c b/lib-src/etags.c
index 0479f8e..e5d76d4 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -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;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]