31 lines
924 B
Diff
31 lines
924 B
Diff
From cd824937ad6588be2ec701ee87fba6ee2626e515 Mon Sep 17 00:00:00 2001
|
|
From: Ryan O'Hara <rohara@redhat.com>
|
|
Date: Fri, 17 Jan 2014 11:53:46 -0600
|
|
Subject: [PATCH] libipvs: Initialize ipvs_service_t variable
|
|
|
|
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@redhat.com>
|
|
Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com>
|
|
---
|
|
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.9.0
|
|
|