Merge pull request #17003 from FRRouting/mergify/bp/stable/10.1/pr-17000

zebra: Fix crash during reconnect (backport #17000)
This commit is contained in:
Donatas Abraitis 2024-10-07 11:26:33 +03:00 committed by GitHub
commit 4daa9b2e3a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1330,7 +1330,7 @@ static void fpm_enqueue_l3vni_table(struct hash_bucket *bucket, void *arg)
struct zebra_l3vni *zl3vni = bucket->data;
fra->zl3vni = zl3vni;
hash_iterate(zl3vni->rmac_table, fpm_enqueue_rmac_table, zl3vni);
hash_iterate(zl3vni->rmac_table, fpm_enqueue_rmac_table, fra);
}
static void fpm_rmac_send(struct event *t)