]> git.ipfire.org Git - people/ms/libloc.git/commitdiff
database: Restart flatten algorithm from the top when a network was dropped
authorMichael Tremer <michael.tremer@ipfire.org>
Tue, 1 Dec 2020 16:58:29 +0000 (16:58 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 1 Dec 2020 17:02:35 +0000 (17:02 +0000)
We used to simply take the first element from the stack after we have
split a network. That is wrong because it is not passing through any
filters and no further subnet checks. It could have therefore been
that the tree was not entirely flat.

Reported-by: Arne Fitzenreiter <arne_f@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/database.c

index 7100298b3de866f467b4e2ca3cbb567da32eec0c..4b8bf1d4bdddbc6511ef73962a6c7a43eb51ef43 100644 (file)
@@ -1380,11 +1380,10 @@ static int __loc_database_enumerator_next_network_flattened(
        loc_network_list_unref(subnets);
        loc_network_list_unref(excluded);
 
-       // Replace network with the first one from the stack
+       // Drop the network and restart the whole process again to pick the next network
        loc_network_unref(*network);
-       *network = loc_network_list_pop_first(enumerator->stack);
 
-       return 0;
+       return __loc_database_enumerator_next_network_flattened(enumerator, network);
 }
 
 LOC_EXPORT int loc_database_enumerator_next_network(