2010-04-18 10:20:09 +00:00
|
|
|
From 0b4f92b8ebaf4c6c57b5f68f7a944ee8f4b6e964 Mon Sep 17 00:00:00 2001
|
2009-11-21 14:02:54 +00:00
|
|
|
From: Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
|
|
|
|
Date: Sat, 21 Nov 2009 14:12:41 +0100
|
2010-01-14 21:27:46 +00:00
|
|
|
Subject: [PATCH 5/5] fixed unitialized variable
|
2009-11-21 14:02:54 +00:00
|
|
|
|
|
|
|
Reported by Nikola Pajkovsky <npajkovs AT redhat.com>:
|
|
|
|
|
|
|
|
Problem shows up only when you compiled xmlrpc with nss and try to
|
|
|
|
connect to server with wrong certificate.
|
|
|
|
---
|
|
|
|
lib/curl_transport/curltransaction.c | 1 +
|
|
|
|
1 files changed, 1 insertions(+), 0 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/lib/curl_transport/curltransaction.c b/lib/curl_transport/curltransaction.c
|
2010-01-14 21:27:46 +00:00
|
|
|
index 019c401..4e592da 100644
|
2009-11-21 14:02:54 +00:00
|
|
|
--- a/lib/curl_transport/curltransaction.c
|
|
|
|
+++ b/lib/curl_transport/curltransaction.c
|
2010-01-14 21:27:46 +00:00
|
|
|
@@ -605,6 +605,7 @@ curlTransaction_create(xmlrpc_env * const envP,
|
2009-11-21 14:02:54 +00:00
|
|
|
curlTransactionP->curlSessionP = curlSessionP;
|
|
|
|
curlTransactionP->userContextP = userContextP;
|
|
|
|
curlTransactionP->progress = progress;
|
|
|
|
+ curlTransactionP->curlError[0] = '\0';
|
|
|
|
|
|
|
|
curlTransactionP->serverUrl = strdup(serverP->serverUrl);
|
|
|
|
if (curlTransactionP->serverUrl == NULL)
|
|
|
|
--
|
2010-04-18 10:20:09 +00:00
|
|
|
1.7.0.1
|
2009-11-21 14:02:54 +00:00
|
|
|
|