diff options
| author | Russ White <russ@riw.us> | 2020-03-03 09:35:43 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-03 09:35:43 -0500 |
| commit | 30ac36dbfcd8ab62705780b30676879c46ee11f9 (patch) | |
| tree | da09c55a659fcb2b2c2f894f7cd12ad9c183b42c | |
| parent | e66addb38514ae4848c4be22c2196f342c868553 (diff) | |
| parent | 4f007a5a031f01da4994c2bbd4cf9b4d331ceed9 (diff) | |
Merge pull request #5897 from patrasar/2415676
pimd: fix crash seen while executing igmp related configuration
| -rw-r--r-- | pimd/pim_cmd.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pimd/pim_cmd.c b/pimd/pim_cmd.c index fed256323f..93af0b92b5 100644 --- a/pimd/pim_cmd.c +++ b/pimd/pim_cmd.c @@ -7429,6 +7429,9 @@ static void igmp_sock_query_interval_reconfig(struct igmp_sock *igmp) static void igmp_sock_query_reschedule(struct igmp_sock *igmp) { + if (igmp->mtrace_only) + return; + if (igmp->t_igmp_query_timer) { /* other querier present */ zassert(igmp->t_igmp_query_timer); |
