summaryrefslogtreecommitdiffstats
path: root/Utilities/cmxmlrpc/xmlrpc_parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'Utilities/cmxmlrpc/xmlrpc_parse.c')
-rw-r--r--Utilities/cmxmlrpc/xmlrpc_parse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Utilities/cmxmlrpc/xmlrpc_parse.c b/Utilities/cmxmlrpc/xmlrpc_parse.c
index 0ca2f7b..74e4c2d 100644
--- a/Utilities/cmxmlrpc/xmlrpc_parse.c
+++ b/Utilities/cmxmlrpc/xmlrpc_parse.c
@@ -362,7 +362,7 @@ convert_array(xmlrpc_env *env, unsigned *depth, xml_element *elem)
XMLRPC_ASSERT(elem != NULL);
/* Set up our error-handling preconditions. */
- array = item = NULL;
+ item = NULL;
(*depth)++;
/* Allocate an array to hold our values. */
@@ -421,7 +421,7 @@ convert_struct(xmlrpc_env *env, unsigned *depth, xml_element *elem)
XMLRPC_ASSERT(elem != NULL);
/* Set up our error-handling preconditions. */
- strct = key = value = NULL;
+ key = value = NULL;
(*depth)++;
/* Allocate an array to hold our members. */
@@ -497,7 +497,7 @@ convert_params(xmlrpc_env *env, unsigned *depth, xml_element *elem)
XMLRPC_ASSERT(elem != NULL);
/* Set up our error-handling preconditions. */
- array = item = NULL;
+ item = NULL;
/* Allocate an array to hold our parameters. */
array = xmlrpc_build_value(env, "()");