Corrected an error in the last commit in which I expanded the body of

a "for" loop in extract/ExtHier.c from one line to two but failed to
then put braces around the whole loop.
This commit is contained in:
Tim Edwards 2020-07-19 17:08:51 -04:00
parent d755e4400a
commit f7b5f38461
2 changed files with 3 additions and 2 deletions

View File

@ -1 +1 @@
8.3.36
8.3.37

View File

@ -291,7 +291,7 @@ extHierConnectFunc1(oneTile, ha)
// node only describes a single point.
for (lab = cumDef->cd_labels; lab; lab = lab->lab_next)
{
// All sticky labels are at the front of the list in cumDef, so
// stop when we see the first non-sticky label.
if (!(lab->lab_flags & LABEL_STICKY)) break;
@ -355,6 +355,7 @@ extHierConnectFunc1(oneTile, ha)
#endif
}
}
return (0);
}