summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_clock.c
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2002-05-05 04:33:09 +0000
committerbde <bde@FreeBSD.org>2002-05-05 04:33:09 +0000
commite0f62a1bbb9d0a1c9791310e57482153efdd55a0 (patch)
tree5ab81e7bc75ca98657db186fdbacbe0f331321ed /sys/kern/kern_clock.c
parente129a7f152187872c6eb5efb7ecc6c8b82013088 (diff)
downloadFreeBSD-src-e0f62a1bbb9d0a1c9791310e57482153efdd55a0.zip
FreeBSD-src-e0f62a1bbb9d0a1c9791310e57482153efdd55a0.tar.gz
Fixed breakage of binary compatibility of the kern.clockrate sysctl in
sys/time.h rev.1.53, etc. Zero out the entire struct clkinfo and not just the new spare part of it so that there is no possibility of leaking kernel stack context to userland.
Diffstat (limited to 'sys/kern/kern_clock.c')
-rw-r--r--sys/kern/kern_clock.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/kern/kern_clock.c b/sys/kern/kern_clock.c
index 92175b8..2e7ca8b 100644
--- a/sys/kern/kern_clock.c
+++ b/sys/kern/kern_clock.c
@@ -479,6 +479,7 @@ sysctl_kern_clockrate(SYSCTL_HANDLER_ARGS)
/*
* Construct clockinfo structure.
*/
+ bzero(&clkinfo, sizeof(clkinfo));
clkinfo.hz = hz;
clkinfo.tick = tick;
clkinfo.profhz = profhz;
OpenPOWER on IntegriCloud