summaryrefslogtreecommitdiff
path: root/cli.c
diff options
context:
space:
mode:
Diffstat (limited to 'cli.c')
-rw-r--r--cli.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/cli.c b/cli.c
index 27d0d9e18..d2ef174c6 100644
--- a/cli.c
+++ b/cli.c
@@ -1,5 +1,5 @@
1#include "includes.h" 1#include "includes.h"
2RCSID("$OpenBSD: cli.c,v 1.2 2000/10/16 09:38:44 djm Exp $"); 2RCSID("$OpenBSD: cli.c,v 1.4 2001/01/07 21:26:55 markus Exp $");
3 3
4#include "xmalloc.h" 4#include "xmalloc.h"
5#include "ssh.h" 5#include "ssh.h"
@@ -145,9 +145,12 @@ cli_write(char* buf, int size)
145 145
146 for (pos = 0; pos < len; pos += ret) { 146 for (pos = 0; pos < len; pos += ret) {
147 ret = write(cli_output, output + pos, len - pos); 147 ret = write(cli_output, output + pos, len - pos);
148 if (ret == -1) 148 if (ret == -1) {
149 xfree(output);
149 return -1; 150 return -1;
151 }
150 } 152 }
153 xfree(output);
151 return 0; 154 return 0;
152} 155}
153 156