From 2c19a01f3f28f7cf119a37a879714faae15d9d23 Mon Sep 17 00:00:00 2001 From: jacob Date: Wed, 26 Nov 2008 14:11:49 +0000 Subject: [PATCH] Fix a Windows-specific GSS crash introduced in r8326, which (again) apparently triggers in failure cases. Patch by Iain Patterson. git-svn-id: svn://svn.tartarus.org/sgt/putty@8336 cda61777-01e9-0310-a592-d414129be87e --- windows/wingss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/wingss.c b/windows/wingss.c index 773e6609..742106e8 100644 --- a/windows/wingss.c +++ b/windows/wingss.c @@ -253,7 +253,7 @@ Ssh_gss_stat ssh_gss_display_status(Ssh_gss_ctx ctx, Ssh_gss_buf *buf) } buf->value = dupstr(msg); - buf->length = strlen(buf->length); + buf->length = strlen(buf->value); return SSH_GSS_OK; } -- 2.11.0