aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/db/btree
diff options
context:
space:
mode:
authorColin Percival <cperciva@FreeBSD.org>2009-04-22 14:07:14 +0000
committerColin Percival <cperciva@FreeBSD.org>2009-04-22 14:07:14 +0000
commit57895cdc764809ad29336431ee6b43c68fe15f15 (patch)
treeee06066b1e128e876793d149c7f3c844851f69a8 /lib/libc/db/btree
parentcff0c03ef7b93d6ab09a8ce2ab009348e5c7aecd (diff)
Don't leak information via uninitialized space in db(3) records. [09:07]releng/7.0
Sanity-check string lengths in order to stop OpenSSL crashing when printing corrupt BMPString or UniversalString objects. [09:08] Security: FreeBSD-SA-09:07.libc Security: FreeBSD-SA-09:08.openssl Security: CVE-2009-0590 Approved by: re (kensmith) Approved by: so (cperciva)
Notes
svn path=/releng/7.0/; revision=191381
Diffstat (limited to 'lib/libc/db/btree')
-rw-r--r--lib/libc/db/btree/bt_split.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/db/btree/bt_split.c b/lib/libc/db/btree/bt_split.c
index dc2791762af0..94fa15317d8f 100644
--- a/lib/libc/db/btree/bt_split.c
+++ b/lib/libc/db/btree/bt_split.c
@@ -381,7 +381,7 @@ bt_page(t, h, lp, rp, skip, ilen)
}
/* Put the new left page for the split into place. */
- if ((l = (PAGE *)malloc(t->bt_psize)) == NULL) {
+ if ((l = (PAGE *)calloc(1, t->bt_psize)) == NULL) {
mpool_put(t->bt_mp, r, 0);
return (NULL);
}