From: "Luis R. Rodriguez" <mcgrof@xxxxxxxxxxxxxxxx> The intersection should be able to continue on even if the first two countries could not be intersected. Signed-off-by: Luis R. Rodriguez <mcgrof at do-not-panic.com> --- intersect.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/intersect.c b/intersect.c index 8f826a0..5cb7d7c 100644 --- a/intersect.c +++ b/intersect.c @@ -50,7 +50,7 @@ int main(int argc, char **argv) "with country (%.2s)\n", prev_world->alpha2, rd->alpha2); - goto out; + continue; } if (intersected) @@ -94,7 +94,6 @@ int main(int argc, char **argv) printf("== World regulatory domain: ==\n"); print_regdom(world); -out: if (!intersected) { free(world); return r; -- 1.7.10.4