summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--clientloop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/clientloop.c b/clientloop.c
index d324e297b..0c77b046c 100644
--- a/clientloop.c
+++ b/clientloop.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: clientloop.c,v 1.280 2016/01/14 16:17:39 markus Exp $ */ 1/* $OpenBSD: clientloop.c,v 1.281 2016/01/23 05:31:35 jsg Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1787,7 +1787,7 @@ client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
1787 } 1787 }
1788 1788
1789 /* Clear and free any buffers. */ 1789 /* Clear and free any buffers. */
1790 memset(buf, 0, sizeof(buf)); 1790 explicit_bzero(buf, sizeof(buf));
1791 buffer_free(&stdin_buffer); 1791 buffer_free(&stdin_buffer);
1792 buffer_free(&stdout_buffer); 1792 buffer_free(&stdout_buffer);
1793 buffer_free(&stderr_buffer); 1793 buffer_free(&stderr_buffer);