gssapi: fix pointer type mismatch in NTLM mech

This commit is contained in:
Luke Howard
2018-12-23 07:42:16 +00:00
parent c9c72ab11c
commit 9763482d9f

View File

@@ -59,7 +59,7 @@ _gss_ntlm_allocate_ctx(OM_uint32 *minor_status, ntlm_ctx *ctx)
if (*ctx)
free(*ctx);
(*ctx) = GSS_C_NO_CONTEXT;
(*ctx) = NULL;
return maj_stat;
}