* [Cluster-devel] [PATCH] rgmanager: reslist: fix insufficient null-termination
@ 2012-06-01 15:11 Jan Pokorný
0 siblings, 0 replies; only message in thread
From: Jan Pokorný @ 2012-06-01 15:11 UTC (permalink / raw)
To: cluster-devel.redhat.com
Previously, garbage could be part of the copied data (my bad).
This version should be sane in this regard.
References:
commit (STABLE32):
http://git.fedorahosted.org/git/?p=cluster.git;a=commit;h=a14f392
https://www.redhat.com/archives/cluster-devel/2012-April/msg00019.html
Signed-off-by: Jan Pokorn? <jpokorny@redhat.com>
---
rgmanager/src/daemons/reslist.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/rgmanager/src/daemons/reslist.c b/rgmanager/src/daemons/reslist.c
index 43430cd..3c05df7 100644
--- a/rgmanager/src/daemons/reslist.c
+++ b/rgmanager/src/daemons/reslist.c
@@ -111,7 +111,7 @@ _attr_value(resource_node_t *node, const char *attrname, const char *ptype)
len = sizeof(p_type) - 1;
memcpy(p_type, ra->ra_value, len);
- p_type[sizeof(p_type)-1] = '\0';
+ p_type[len] = '\0';
/* Skip the "%" and recurse */
return _attr_value(node->rn_parent, ++c, p_type);
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2012-06-01 15:11 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-01 15:11 [Cluster-devel] [PATCH] rgmanager: reslist: fix insufficient null-termination Jan Pokorný
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).