Commit b28f6e7c authored by Martin v. Löwis's avatar Martin v. Löwis

Properly use &&. Closes bug #434989.

parent 01dfdb3d
......@@ -2524,7 +2524,7 @@ validate_node(node *tree)
int res = 1; /* result value */
node* next = 0; /* node to process after this one */
while (res & (tree != 0)) {
while (res && (tree != 0)) {
nch = NCH(tree);
next = 0;
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