Patch from Iain Patterson: fix crash on Windows when GSSAPI auth is attempted
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Fri, 17 Oct 2008 20:55:08 +0000 (20:55 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Fri, 17 Oct 2008 20:55:08 +0000 (20:55 +0000)
but fails for some reason (such as not having a tgt for the server's realm).

git-svn-id: svn://svn.tartarus.org/sgt/putty@8210 cda61777-01e9-0310-a592-d414129be87e

windows/wingss.c

index 5125a3a..5cf7e0f 100644 (file)
@@ -96,6 +96,7 @@ Ssh_gss_stat ssh_gss_import_name(char *host, Ssh_gss_name *srv_name)
 Ssh_gss_stat ssh_gss_acquire_cred(Ssh_gss_ctx *ctx)
 {
     winSsh_gss_ctx *winctx = snew(winSsh_gss_ctx);
+    memset(winctx, 0, sizeof(winSsh_gss_ctx));
 
     /* prepare our "wrapper" structure */
     winctx->maj_stat =  winctx->min_stat = SEC_E_OK;