mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-14 10:09:17 +00:00
pimd: Fix unininitialized data usage found by clang
clang 5.0 to the rescue! Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
d3a551b952
commit
74d1799ae6
@ -526,7 +526,7 @@ struct pim_ifchannel *pim_ifchannel_add(struct interface *ifp,
|
|||||||
if (!ch) {
|
if (!ch) {
|
||||||
zlog_warn(
|
zlog_warn(
|
||||||
"%s: pim_ifchannel_new() failure for (S,G)=%s on interface %s",
|
"%s: pim_ifchannel_new() failure for (S,G)=%s on interface %s",
|
||||||
__PRETTY_FUNCTION__, up->sg_str, ifp->name);
|
__PRETTY_FUNCTION__, pim_str_sg_dump(sg), ifp->name);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user