mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-09 08:18:03 +02:00
ifcfg-rh: fix possible uninitialized variable usage
This commit is contained in:
parent
60ef505a70
commit
a74189fd04
1 changed files with 1 additions and 1 deletions
|
|
@ -888,7 +888,7 @@ error:
|
||||||
static NMIP6Address *
|
static NMIP6Address *
|
||||||
parse_full_ip6_address (const char *addr_str, GError **error)
|
parse_full_ip6_address (const char *addr_str, GError **error)
|
||||||
{
|
{
|
||||||
NMIP6Address *addr;
|
NMIP6Address *addr = NULL;
|
||||||
char **list;
|
char **list;
|
||||||
char *ip_tag, *prefix_tag;
|
char *ip_tag, *prefix_tag;
|
||||||
struct in6_addr tmp = IN6ADDR_ANY_INIT;
|
struct in6_addr tmp = IN6ADDR_ANY_INIT;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue