From e936694229354244eed3addad14a07f76614e67e Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 23 Sep 2009 18:58:04 +0200 Subject: convert bzero to memset, allow root login --- package/openssh/patches/patch-channels_c | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 package/openssh/patches/patch-channels_c (limited to 'package/openssh/patches/patch-channels_c') diff --git a/package/openssh/patches/patch-channels_c b/package/openssh/patches/patch-channels_c new file mode 100644 index 000000000..3712809e4 --- /dev/null +++ b/package/openssh/patches/patch-channels_c @@ -0,0 +1,29 @@ +--- openssh-5.2p1.orig/channels.c 2009-02-14 06:28:21.000000000 +0100 ++++ openssh-5.2p1/channels.c 2009-09-18 12:29:28.000000000 +0200 +@@ -411,7 +411,7 @@ channel_free(Channel *c) + if (cc->abandon_cb != NULL) + cc->abandon_cb(c, cc->ctx); + TAILQ_REMOVE(&c->status_confirms, cc, entry); +- bzero(cc, sizeof(*cc)); ++ memset(cc, 0, sizeof(*cc)); + xfree(cc); + } + if (c->filter_cleanup != NULL && c->filter_ctx != NULL) +@@ -2447,7 +2447,7 @@ channel_input_status_confirm(int type, u + return; + cc->cb(type, c, cc->ctx); + TAILQ_REMOVE(&c->status_confirms, cc, entry); +- bzero(cc, sizeof(*cc)); ++ memset(cc, 0, sizeof(*cc)); + xfree(cc); + } + +@@ -2941,7 +2941,7 @@ channel_connect_ctx_free(struct channel_ + xfree(cctx->host); + if (cctx->aitop) + freeaddrinfo(cctx->aitop); +- bzero(cctx, sizeof(*cctx)); ++ memset(cctx, 0, sizeof(*cctx)); + cctx->host = NULL; + cctx->ai = cctx->aitop = NULL; + } -- cgit v1.2.3