mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-05 22:50:14 +00:00
isisd: fix uninitialized variable when searching for LSP
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
This commit is contained in:
parent
a78dde0dcd
commit
9ff7c74bdd
@ -2172,7 +2172,7 @@ struct isis_lsp *lsp_for_arg(struct lspdb_head *head, const char *argv,
|
|||||||
struct isis *isis)
|
struct isis *isis)
|
||||||
{
|
{
|
||||||
char sysid[255] = {0};
|
char sysid[255] = {0};
|
||||||
uint8_t number[3];
|
uint8_t number[3] = {0};
|
||||||
const char *pos;
|
const char *pos;
|
||||||
uint8_t lspid[ISIS_SYS_ID_LEN + 2] = {0};
|
uint8_t lspid[ISIS_SYS_ID_LEN + 2] = {0};
|
||||||
struct isis_dynhn *dynhn;
|
struct isis_dynhn *dynhn;
|
||||||
|
Loading…
Reference in New Issue
Block a user