From 5ca50482493c880eac852bc0b7cf7fa9aab0a451 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Thu, 13 Jun 2019 13:27:42 +0900 Subject: [PATCH] networkctl: fix use of uninitialized value --- src/network/networkctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network/networkctl.c b/src/network/networkctl.c index b265f1f..901e88c 100644 --- a/src/network/networkctl.c +++ b/src/network/networkctl.c @@ -269,7 +269,7 @@ static int acquire_link_info(sd_bus *bus, sd_netlink *rtnl, char **patterns, Lin return log_error_errno(r, "Failed to enumerate links: %m"); for (i = reply; i; i = sd_netlink_message_next(i)) { - if (!GREEDY_REALLOC(links, allocated, c+1)) + if (!GREEDY_REALLOC0(links, allocated, c+1)) return -ENOMEM; r = decode_link(i, links + c, patterns); -- 2.7.4