aboutsummaryrefslogtreecommitdiff
path: root/lib/http_ntlm.c
diff options
context:
space:
mode:
authorMichael Mueller <mmueller@vigilantsw.com>2011-07-19 23:54:21 +0200
committerDaniel Stenberg <daniel@haxx.se>2011-07-19 23:54:21 +0200
commitd007c3ca76cf0587a3222279ebda0f3a8727807f (patch)
tree97e04824f736251d133611db76f37957df5d4e78 /lib/http_ntlm.c
parent0ae15092d48277ededfc5ef698bc5a25f4c82aff (diff)
sso_ntlm_initiate: unassigned variable
Bug: http://curl.haxx.se/mail/lib-2011-07/0109.html
Diffstat (limited to 'lib/http_ntlm.c')
-rw-r--r--lib/http_ntlm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c
index 85b4e937e..189bb8af3 100644
--- a/lib/http_ntlm.c
+++ b/lib/http_ntlm.c
@@ -725,7 +725,7 @@ static CURLcode sso_ntlm_initiate(struct connectdata *conn,
pid_t pid;
const char *username;
char *slash, *domain = NULL;
- const char *ntlm_auth;
+ const char *ntlm_auth = NULL;
/* Return if communication with ntlm_auth already set up */
if(conn->fd_helper != -1 || conn->pid) {