]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2008/07/10 18:05:58
authordjm <djm>
Fri, 11 Jul 2008 07:35:37 +0000 (07:35 +0000)
committerdjm <djm>
Fri, 11 Jul 2008 07:35:37 +0000 (07:35 +0000)
     [channels.c]
     missing bzero; from mickey; ok djm@

ChangeLog
channels.c

index b292066019ca98f684ddeb347e8c7ec050e1b4c9..0ebe19b91e2b4c60f66ec0a645b0dd827281d0b8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,9 @@
      /*NOTREACHED*/ for lint warning:
        warning: function key_equal falls off bottom without returning value
      ok djm@
+   - markus@cvs.openbsd.org 2008/07/10 18:05:58
+     [channels.c]
+     missing bzero; from mickey; ok djm@
 
 20080709
  - (djm) [Makefile.in] Print "all tests passed" when all regress tests pass
index ac5134b5ba43e6c83d8092d67085d3fd9f5f4025..9f27fa632c648996aadbbd8185cb8f6fc913adf9 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: channels.c,v 1.282 2008/06/16 13:22:53 dtucker Exp $ */
+/* $OpenBSD: channels.c,v 1.283 2008/07/10 18:05:58 markus Exp $ */
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -2875,6 +2875,7 @@ connect_to(const char *host, u_short port, char *ctype, char *rname)
                return NULL;
        }
 
+       memset(&cctx, 0, sizeof(cctx));
        cctx.host = xstrdup(host);
        cctx.port = port;
        cctx.ai = cctx.aitop;
This page took 0.057339 seconds and 5 git commands to generate.