| # | Line 228 | Line 228 | OCTREE ot; | |
|---|---|---|
| 228 | ||
| 229 | if (!isfull(ot)) | |
| 230 | goto noderr; | |
| 231 | < | i = oseti(ot); |
| 232 | < | if ((os = ostable[i%OSTSIZ]) == NULL) |
| 231 | > | ot = oseti(ot); |
| 232 | > | if ((os = ostable[ot%OSTSIZ]) == NULL) |
| 233 | goto noderr; | |
| 234 | < | for (i /= OSTSIZ; i--; os += *os + 1) |
| 234 | > | for (i = ot/OSTSIZ; i--; os += *os + 1) |
| 235 | if (*os <= 0) | |
| 236 | goto noderr; | |
| 237 | for (i = *os; i-- >= 0; ) /* copy set here */ | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |