summaryrefslogtreecommitdiff
path: root/source4/utils/ntlm_auth.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-04-02 11:18:34 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:59:43 -0500
commit64587cbf9eec5b44bd4b78c5e87d84d2ce7c344a (patch)
treeebfbd3cbc00aa8330c8ea01f639a5d319aa6ed6f /source4/utils/ntlm_auth.c
parentf53e12b41b8d669c175536449fc676389cc3dd57 (diff)
downloadsamba-64587cbf9eec5b44bd4b78c5e87d84d2ce7c344a.tar.gz
samba-64587cbf9eec5b44bd4b78c5e87d84d2ce7c344a.tar.bz2
samba-64587cbf9eec5b44bd4b78c5e87d84d2ce7c344a.zip
r14858: fix bugs noticed by the ibm code checker
metze (This used to be commit 152e7e3d024cbc1ae60f8595507d39b647551a71)
Diffstat (limited to 'source4/utils/ntlm_auth.c')
-rw-r--r--source4/utils/ntlm_auth.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/utils/ntlm_auth.c b/source4/utils/ntlm_auth.c
index 79267882fa..5841adbf40 100644
--- a/source4/utils/ntlm_auth.c
+++ b/source4/utils/ntlm_auth.c
@@ -455,7 +455,8 @@ static void manage_gensec_request(enum stdio_helper_mode stdio_helper_mode,
char *grouplist = NULL;
struct auth_session_info *session_info;
- if (!NT_STATUS_IS_OK(gensec_session_info(state->gensec_state, &session_info))) {
+ nt_status = gensec_session_info(state->gensec_state, &session_info);
+ if (!NT_STATUS_IS_OK(nt_status)) {
DEBUG(1, ("gensec_session_info failed: %s\n", nt_errstr(nt_status)));
mux_printf(mux_id, "BH %s\n", nt_errstr(nt_status));
data_blob_free(&in);
@@ -759,7 +760,7 @@ static void manage_squid_request(enum stdio_helper_mode helper_mode,
stdio_helper_function fn, void **private2)
{
char buf[SQUID_BUFFER_SIZE+1];
- unsigned int mux_id;
+ unsigned int mux_id = 0;
int length;
char *c;
static BOOL err;