diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2008-07-10 18:05:59 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2008-07-10 18:05:59 +0000 |
commit | 1e8a655e800a8bd02bd41f1278e8a58cd135bddf (patch) | |
tree | 38735eb2f216d5d56a323a5064c2360da0924e8a | |
parent | 1866bdc9ada64847e58e3d7ef71e8e9530f05f65 (diff) |
missing bzero; from mickey; ok djm@
-rw-r--r-- | usr.bin/ssh/channels.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/channels.c b/usr.bin/ssh/channels.c index 50f01b9fb0d..3fdf8471898 100644 --- a/usr.bin/ssh/channels.c +++ b/usr.bin/ssh/channels.c @@ -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 @@ -2847,6 +2847,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; |