29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From fa520fd88d776435c90e054601dddf06f7077254 Mon Sep 17 00:00:00 2001
|
|
From: Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
|
|
Date: Sat, 21 Nov 2009 14:12:41 +0100
|
|
Subject: [PATCH 5/6] fixed unitialized variable
|
|
|
|
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
|
|
index bf7fa99..4239385 100644
|
|
--- a/lib/curl_transport/curltransaction.c
|
|
+++ b/lib/curl_transport/curltransaction.c
|
|
@@ -555,6 +555,7 @@ curlTransaction_create(xmlrpc_env * const envP,
|
|
curlTransactionP->curlSessionP = curlSessionP;
|
|
curlTransactionP->userContextP = userContextP;
|
|
curlTransactionP->progress = progress;
|
|
+ curlTransactionP->curlError[0] = '\0';
|
|
|
|
curlTransactionP->serverUrl = strdup(serverP->serverUrl);
|
|
if (curlTransactionP->serverUrl == NULL)
|
|
--
|
|
1.6.5.2
|
|
|