Next | Program Repair Shop | 271 |
One minor potential bug here:
printout($ct_scanout, @chain) if $1 == 7;
We need to reset @chain between sections
The bug didn't manifest in the test data
Because both sections had the same number of chains
if ($1 == 7) { printout($ct_scanout, @chain); @chain = (); }
Next | Copyright © 2002 M. J. Dominus |