1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-11 16:58:40 +03:00

r9233: Ensure that the output variable is initialised in this conversion from

error to non-error case.

Andrew Bartlett
(This used to be commit ab75cd53e7c65fa6242b8dde3bfede735a6b36d5)
This commit is contained in:
Andrew Bartlett 2005-08-10 22:27:04 +00:00 committed by Gerald (Jerry) Carter
parent f870014fc3
commit 457d7fd672

View File

@ -354,6 +354,7 @@ static NTSTATUS gensec_spnego_parse_negTokenInit(struct gensec_security *gensec_
* for better luck next time */
if (NT_STATUS_EQUAL(nt_status, NT_STATUS_INVALID_PARAMETER)) {
*unwrapped_out = data_blob(NULL, 0);
nt_status = NT_STATUS_MORE_PROCESSING_REQUIRED;
}
}