diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2016-07-10 23:07:35 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2016-07-10 23:07:35 +0000 |
commit | c78c7ce4c255140e99f36b6fe4af00a77f0ea802 (patch) | |
tree | 8b8d208c5fe03d7d6b8ac5d9ac042a6656bef6f1 /lib | |
parent | 79dd30fcd5ee6d38307f9c7eee575499fe4db6b7 (diff) |
zero the read buffer after copying data to user so it doesn't linger.
ok beck
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/src/ssl/s3_pkt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libssl/src/ssl/s3_pkt.c b/lib/libssl/src/ssl/s3_pkt.c index 153b37612f7..0e97be6728b 100644 --- a/lib/libssl/src/ssl/s3_pkt.c +++ b/lib/libssl/src/ssl/s3_pkt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s3_pkt.c,v 1.57 2015/09/12 16:10:07 doug Exp $ */ +/* $OpenBSD: s3_pkt.c,v 1.58 2016/07/10 23:07:34 tedu Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -956,6 +956,7 @@ start: memcpy(buf, &(rr->data[rr->off]), n); if (!peek) { + memset(&(rr->data[rr->off]), 0, n); rr->length -= n; rr->off += n; if (rr->length == 0) { |