igmp: fix igmp proxy group merge 43/26543/2
authorBenoît Ganne <bganne@cisco.com>
Thu, 16 Apr 2020 10:47:47 +0000 (12:47 +0200)
committerNeale Ranns <nranns@cisco.com>
Thu, 16 Apr 2020 17:15:03 +0000 (17:15 +0000)
commitbd7f3422bbe38ba87888b765e94b56bfcbb9602c
tree4d67199d2495f060af0beb4c22cac9c610e7ce9c
parent063f2b86edafdc17d285bebc7722cad19c885db1
igmp: fix igmp proxy group merge

When merging proxy groups in igmp_proxy_device_merge_group(), the call
to igmp_proxy_device_merge_src() can end up removing the current proxy
group via igmp_group_clear(). When that happens, it must returns NULL so
that igmp_proxy_device_merge_config() does not send a IGMPv3 report for
a dead proxy group.
Make igmp_group_clear() reset the group pointer to NULL to fix this bug
and to detect similar bugs more easily.

Type: fix

Change-Id: I229e55b5bfa71734d7844893f5209a66fa3cc8ae
Signed-off-by: Benoît Ganne <bganne@cisco.com>
src/plugins/igmp/igmp.c
src/plugins/igmp/igmp_config.c
src/plugins/igmp/igmp_group.c
src/plugins/igmp/igmp_group.h
src/plugins/igmp/igmp_proxy.c
src/plugins/igmp/igmp_src.c