From: pcaulfield@sourceware.org <pcaulfield@sourceware.org>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] cluster/cman-kernel/src membership.c
Date: 3 May 2007 10:19:02 -0000 [thread overview]
Message-ID: <20070503101902.32548.qmail@sourceware.org> (raw)
CVSROOT: /cvs/cluster
Module name: cluster
Branch: RHEL4
Changes by: pcaulfield at sourceware.org 2007-05-03 10:19:01
Modified files:
cman-kernel/src: membership.c
Log message:
Add a check to the only unchecked use of "node" before calling
start_transition().
This might fix bz#233521
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman-kernel/src/membership.c.diff?cvsroot=cluster&only_with_tag=RHEL4&r1=1.44.2.26&r2=1.44.2.27
--- cluster/cman-kernel/src/Attic/membership.c 2007/01/19 16:20:14 1.44.2.26
+++ cluster/cman-kernel/src/Attic/membership.c 2007/05/03 10:19:01 1.44.2.27
@@ -2895,7 +2895,8 @@
real master must have gone away in a period of confusion */
if (node_state != MASTER && hellomsg->flags & HELLO_FLAG_MASTER) {
node = find_node_by_nodeid(saddr->scl_nodeid);
- start_transition(TRANS_CHECK, node);
+ if (node)
+ start_transition(TRANS_CHECK, node);
}
return 0;
next reply other threads:[~2007-05-03 10:19 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-03 10:19 pcaulfield [this message]
-- strict thread matches above, loose matches on Subject: below --
2007-09-19 15:01 [Cluster-devel] cluster/cman-kernel/src membership.c pcaulfield
2007-01-19 16:21 pcaulfield
2007-01-19 16:20 pcaulfield
2007-01-18 15:10 pcaulfield
2007-01-18 15:08 pcaulfield
2006-06-26 14:13 pcaulfield
2006-06-26 8:54 pcaulfield
2006-06-26 8:42 pcaulfield
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070503101902.32548.qmail@sourceware.org \
--to=pcaulfield@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.