From 73428f60b52aa283e3131a837185b04d082e77d7 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Fri, 19 Jun 2015 16:26:12 +0200 Subject: [PATCH 1/1] openvpn plugin: Fix "Dead assignment" warning. --- src/openvpn.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/openvpn.c b/src/openvpn.c index 4b154b72..663a82d8 100644 --- a/src/openvpn.c +++ b/src/openvpn.c @@ -518,13 +518,15 @@ static int multi4_read (char *name, FILE *fh) static int openvpn_read (void) { FILE *fh; - int i, vpn_read, read; + int i, read; - vpn_read = read = 0; + read = 0; /* call the right read function for every status entry in the list */ for (i = 0; i < vpn_num; i++) { + int vpn_read = 0; + fh = fopen (vpn_list[i]->file, "r"); if (fh == NULL) { -- 2.11.0