Kaydet (Commit) b28f6e7c authored tarafından Martin v. Löwis's avatar Martin v. Löwis

Properly use &&. Closes bug #434989.

üst 01dfdb3d
...@@ -2524,7 +2524,7 @@ validate_node(node *tree) ...@@ -2524,7 +2524,7 @@ validate_node(node *tree)
int res = 1; /* result value */ int res = 1; /* result value */
node* next = 0; /* node to process after this one */ node* next = 0; /* node to process after this one */
while (res & (tree != 0)) { while (res && (tree != 0)) {
nch = NCH(tree); nch = NCH(tree);
next = 0; next = 0;
switch (TYPE(tree)) { switch (TYPE(tree)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment