From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12001 invoked by alias); 8 Apr 2009 21:00:01 -0000 Received: (qmail 11984 invoked by alias); 8 Apr 2009 21:00:00 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS X-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS X-Spam-Check-By: sourceware.org X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on bastion2.fedora.phx.redhat.com Subject: cluster: RHEL48 - rgmanager: Fix segfault from missing initializers To: cluster-cvs-relay@redhat.com X-Project: Cluster Project X-Git-Module: cluster.git X-Git-Refname: refs/heads/RHEL48 X-Git-Reftype: branch X-Git-Oldrev: c1ec78cd859a799199dbce4135074769f62362ce X-Git-Newrev: 710344770021dd05036cbea66da3e5213c0904e7 From: Lon Hohberger Message-Id: <20090408205931.72525120339@lists.fedorahosted.org> Date: Wed, 08 Apr 2009 21:00:00 -0000 X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 Mailing-List: contact cluster-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: cluster-cvs-owner@sourceware.org X-SW-Source: 2009-q2/txt/msg00058.txt.bz2 Gitweb: http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=710344770021dd05036cbea66da3e5213c0904e7 Commit: 710344770021dd05036cbea66da3e5213c0904e7 Parent: c1ec78cd859a799199dbce4135074769f62362ce Author: Lon Hohberger AuthorDate: Wed Apr 8 16:49:04 2009 -0400 Committer: Lon Hohberger CommitterDate: Wed Apr 8 16:58:53 2009 -0400 rgmanager: Fix segfault from missing initializers If the sets are empty or malloc fails, there is a chance that the set lengths will not be zero like they should, causing a segfault. Only happens w/ previous patch for bug #428108 Signed-off-by: Lon Hohberger --- rgmanager/src/daemons/groups.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rgmanager/src/daemons/groups.c b/rgmanager/src/daemons/groups.c index a0816d5..f26c0d4 100644 --- a/rgmanager/src/daemons/groups.c +++ b/rgmanager/src/daemons/groups.c @@ -435,9 +435,9 @@ check_rdomain_crash(char *svcName) set_type_t *nodes = NULL; set_type_t *fd_nodes = NULL; set_type_t *isect = NULL; - int nodecount; - int fd_nodecount, fl; - int icount; + int nodecount = 0; + int fd_nodecount = 0, fl = 0; + int icount = 0; char fd_name[256]; if (group_property(svcName, "domain", fd_name, sizeof(fd_name)) != 0)