LVS
lvs-devel
Google
 
Web LinuxVirtualServer.org

[PATCH] libipvs: Initialize ipvs_service_t variable

To: lvs-devel@xxxxxxxxxxxxxxx
Subject: [PATCH] libipvs: Initialize ipvs_service_t variable
Cc: "Ryan O'Hara" <rohara@xxxxxxxxxx>
From: "Ryan O'Hara" <rohara@xxxxxxxxxx>
Date: Fri, 17 Jan 2014 11:53:46 -0600
The ipvs_get_service function declares an ipvs_service_t type variable
and initializes some of the values, but should really start by
initializing the entire structure.

Signed-off-by: Ryan O'Hara <rohara@xxxxxxxxxx>
---
 libipvs/libipvs.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libipvs/libipvs.c b/libipvs/libipvs.c
index d2fec49..8baafed 100644
--- a/libipvs/libipvs.c
+++ b/libipvs/libipvs.c
@@ -942,6 +942,7 @@ ipvs_get_service(__u32 fwmark, __u16 af, __u16 protocol, 
union nf_inet_addr addr
                if (!svc)
                        return NULL;
 
+               memset(&tsvc, 0, sizeof(tsvc));
                tsvc.fwmark = fwmark;
                tsvc.af = af;
                tsvc.protocol= protocol;
-- 
1.8.1.4

--
To unsubscribe from this list: send the line "unsubscribe lvs-devel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

<Prev in Thread] Current Thread [Next in Thread>