summaryrefslogtreecommitdiffstats
path: root/Utilities/cmxmlrpc/xmlrpc_client.c
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-03-03 14:25:13 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-03-03 14:25:13 (GMT)
commitade034a74766ea50c14f7beb0778031b964e39fa (patch)
tree3756129a4b42d3d3b274a4f1c1f9933bf0f9754d /Utilities/cmxmlrpc/xmlrpc_client.c
parent78ca400d33ee7608dcddbda80143fb5768da38e2 (diff)
downloadCMake-ade034a74766ea50c14f7beb0778031b964e39fa.zip
CMake-ade034a74766ea50c14f7beb0778031b964e39fa.tar.gz
CMake-ade034a74766ea50c14f7beb0778031b964e39fa.tar.bz2
COMP: Remove warnings on borland
Diffstat (limited to 'Utilities/cmxmlrpc/xmlrpc_client.c')
-rw-r--r--Utilities/cmxmlrpc/xmlrpc_client.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/Utilities/cmxmlrpc/xmlrpc_client.c b/Utilities/cmxmlrpc/xmlrpc_client.c
index c14ac48..329b160 100644
--- a/Utilities/cmxmlrpc/xmlrpc_client.c
+++ b/Utilities/cmxmlrpc/xmlrpc_client.c
@@ -497,9 +497,6 @@ call_info_set_asynch_data(xmlrpc_env * const env,
xmlrpc_value *holder;
- /* Error-handling preconditions. */
- holder = NULL;
-
XMLRPC_ASSERT_ENV_OK(env);
XMLRPC_ASSERT_PTR_OK(info);
XMLRPC_ASSERT(info->_asynch_data_holder == NULL);
@@ -552,7 +549,6 @@ xmlrpc_server_info_new (xmlrpc_env * const env,
char *url_copy;
/* Error-handling preconditions. */
- server = NULL;
url_copy = NULL;
XMLRPC_ASSERT_ENV_OK(env);
@@ -593,7 +589,6 @@ xmlrpc_server_info * xmlrpc_server_info_copy(xmlrpc_env *env,
XMLRPC_ASSERT_PTR_OK(aserver);
/* Error-handling preconditions. */
- server = NULL;
url_copy = NULL;
auth_copy = NULL;
@@ -923,9 +918,8 @@ xmlrpc_server_info_set_basic_auth(xmlrpc_env * const envP,
size_t token_len, auth_type_len, auth_header_len;
/* Error-handling preconditions. */
- raw_token = NULL;
token = NULL;
- token_data = auth_type = auth_header = NULL;
+ auth_header = NULL;
XMLRPC_ASSERT_ENV_OK(envP);
XMLRPC_ASSERT_PTR_OK(serverP);