diff options
author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2023-02-19 13:34:29 (GMT) |
---|---|---|
committer | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2023-02-19 13:34:29 (GMT) |
commit | 423284edfa980fc3fdb51ab20af96685a988ba97 (patch) | |
tree | 66fcb2167046b317221a677cc5154e2ed2863b72 /plugins-root/check_icmp.c | |
parent | d3a4bad51d72a3c5bcc06ceb5e0a823dcc24bf49 (diff) | |
download | monitoring-plugins-423284edfa980fc3fdb51ab20af96685a988ba97.tar.gz |
check_icmp: Fix compiler warning
This fixes a compiler warning which complains about an uninitialized
value for a variable which is then returned.
This had no real world impact, since the program would crash in the
branch where result is not set.
The variable is initialized to "-1" which would be the error for
inet_pton.
Diffstat (limited to 'plugins-root/check_icmp.c')
-rw-r--r-- | plugins-root/check_icmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c index 317cd53..e59e92d 100644 --- a/plugins-root/check_icmp.c +++ b/plugins-root/check_icmp.c | |||
@@ -1339,7 +1339,7 @@ add_target_ip(char *arg, struct sockaddr_storage *in) | |||
1339 | static int | 1339 | static int |
1340 | add_target(char *arg) | 1340 | add_target(char *arg) |
1341 | { | 1341 | { |
1342 | int error, result; | 1342 | int error, result = -1; |
1343 | struct sockaddr_storage ip; | 1343 | struct sockaddr_storage ip; |
1344 | struct addrinfo hints, *res, *p; | 1344 | struct addrinfo hints, *res, *p; |
1345 | struct sockaddr_in *sin; | 1345 | struct sockaddr_in *sin; |