aboutsummaryrefslogtreecommitdiff
path: root/security/openssh/files
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2003-09-23 19:16:49 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2003-09-23 19:16:49 +0000
commitae53ed442cbca88465e4bfbe4765625d5452d9af (patch)
tree736a8b3ab39a4b6ad408f4a7768416896deea986 /security/openssh/files
parent691a5859f45dac71230743dd6542ad0f151e5220 (diff)
downloadports-ae53ed442cbca88465e4bfbe4765625d5452d9af.tar.gz
ports-ae53ed442cbca88465e4bfbe4765625d5452d9af.zip
Notes
Diffstat (limited to 'security/openssh/files')
-rw-r--r--security/openssh/files/patch-buffer.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/security/openssh/files/patch-buffer.c b/security/openssh/files/patch-buffer.c
index 093e83c586a3..3bb0201df46a 100644
--- a/security/openssh/files/patch-buffer.c
+++ b/security/openssh/files/patch-buffer.c
@@ -43,7 +43,7 @@ diff -u -r1.16 -r1.18
buffer->offset = 0;
buffer->end = 0;
}
-@@ -34,8 +37,10 @@
+@@ -34,8 +37,11 @@
void
buffer_free(Buffer *buffer)
{
@@ -51,12 +51,13 @@ diff -u -r1.16 -r1.18
- xfree(buffer->buf);
+ if (buffer->alloc > 0) {
+ memset(buffer->buf, 0, buffer->alloc);
++ buffer->alloc = 0;
+ xfree(buffer->buf);
+ }
}
/*
-@@ -69,6 +74,7 @@
+@@ -69,6 +75,7 @@
void *
buffer_append_space(Buffer *buffer, u_int len)
{
@@ -64,7 +65,7 @@ diff -u -r1.16 -r1.18
void *p;
if (len > 0x100000)
-@@ -98,11 +104,13 @@
+@@ -98,11 +105,13 @@
goto restart;
}
/* Increase the size of the buffer and retry. */