mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 03:40:07 +01: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 *
|
||||
parse_full_ip6_address (const char *addr_str, GError **error)
|
||||
{
|
||||
NMIP6Address *addr;
|
||||
NMIP6Address *addr = NULL;
|
||||
char **list;
|
||||
char *ip_tag, *prefix_tag;
|
||||
struct in6_addr tmp = IN6ADDR_ANY_INIT;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue