mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-03 05:21:31 +00:00
Merge pull request #3601 from mjstapp/fix_prov_uninit
zebra: Fix uninitialized value warning in dplane code
This commit is contained in:
commit
d4b690fb3e
@ -995,7 +995,7 @@ int dplane_provider_register(const char *name,
|
||||
struct zebra_dplane_provider **prov_p)
|
||||
{
|
||||
int ret = 0;
|
||||
struct zebra_dplane_provider *p, *last;
|
||||
struct zebra_dplane_provider *p = NULL, *last;
|
||||
|
||||
/* Validate */
|
||||
if (fp == NULL) {
|
||||
|
Loading…
Reference in New Issue
Block a user