[PATCH] chunkd: fix duplicate stc_object allocation in stc_parse_key()
Akinobu Mita <[email protected]>
| Newsgroups | org.kernel.vger.hail-devel |
|---|---|
| Message-ID | <[email protected]> |
At the beginning of stc_parse_key(), st_object is allocated twice for the same variable. Signed-off-by: Akinobu Mita <[email protected]> --- lib/chunkdc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/chunkdc.c b/lib/chunkdc.c index 2696a81..67c39eb 100644 --- a/lib/chunkdc.c +++ b/lib/chunkdc.c @@ -831,7 +831,7 @@ void stc_free_keylist(struct st_keylist *keylist) static void stc_parse_key(xmlDocPtr doc, xmlNode *node, struct st_keylist *keylist) { - struct st_object *obj = calloc(1, sizeof(*obj)); + struct st_object *obj; xmlChar *xs; obj = calloc(1, sizeof(*obj)); -- 1.6.5.5