summaryrefslogtreecommitdiffstats
path: root/src/segtree.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/segtree.c')
-rw-r--r--src/segtree.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/segtree.c b/src/segtree.c
index 939c30d2..6ee65523 100644
--- a/src/segtree.c
+++ b/src/segtree.c
@@ -431,16 +431,19 @@ static bool segtree_needs_first_segment(const struct set *set,
const struct expr *init, bool add)
{
if (add) {
- /* Add the first segment in three situations:
+ /* Add the first segment in four situations:
*
* 1) This is an anonymous set.
* 2) This set exists and it is empty.
- * 3) This set is created with a number of initial elements.
+ * 3) New empty set and, separately, new elements are added.
+ * 4) This set is created with a number of initial elements.
*/
if ((set->flags & NFT_SET_ANONYMOUS) ||
(set->init && set->init->size == 0) ||
- (set->init == init))
+ (set->init == NULL && init) ||
+ (set->init == init)) {
return true;
+ }
} else {
/* If the set is empty after the removal, we have to
* remove the first non-matching segment too.