diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-10-03 19:07:47 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-10-03 19:07:47 +0200 |
commit | 96f8d143a70d671aa224cbb769980414a312a894 (patch) | |
tree | ba443e0d9b619965fdd33760813a9eb9d1f76984 /compress.c | |
parent | - (bal) CVS ID fix up in version.h (diff) | |
download | openssh-96f8d143a70d671aa224cbb769980414a312a894.tar.xz openssh-96f8d143a70d671aa224cbb769980414a312a894.zip |
- markus@cvs.openbsd.org 2001/09/27 11:58:16
[compress.c]
mem leak; chombier@mac.com
Diffstat (limited to 'compress.c')
-rw-r--r-- | compress.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compress.c b/compress.c index 3e41b3d82..a779af6d7 100644 --- a/compress.c +++ b/compress.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: compress.c,v 1.14 2001/04/05 10:39:01 markus Exp $"); +RCSID("$OpenBSD: compress.c,v 1.15 2001/09/27 11:58:16 markus Exp $"); #include "log.h" #include "buffer.h" @@ -33,7 +33,7 @@ void buffer_compress_init_send(int level) { if (compress_init_send_called == 1) - deflateEnd(&incoming_stream); + deflateEnd(&outgoing_stream); compress_init_send_called = 1; debug("Enabling compression at level %d.", level); if (level < 1 || level > 9) |