diff options
| author | Nate Lawson <njl@FreeBSD.org> | 2005-04-18 16:48:10 +0000 |
|---|---|---|
| committer | Nate Lawson <njl@FreeBSD.org> | 2005-04-18 16:48:10 +0000 |
| commit | 998b49f8852bf96bb1a91759190ad07f0042492c (patch) | |
| tree | 1b526c26e798f5104312e580a69d4f87d3a72ba8 /sys/boot | |
| parent | ee7a4011f25dc3ea50649ddf66ca4ab4c3d69b0d (diff) | |
MFC 1.10: Fix overflow of buf from printing the XSDT address.
Notes
svn path=/stable/5/; revision=145241
Diffstat (limited to 'sys/boot')
| -rw-r--r-- | sys/boot/i386/libi386/biosacpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/i386/libi386/biosacpi.c b/sys/boot/i386/libi386/biosacpi.c index f9b2d774b054..cb2021561101 100644 --- a/sys/boot/i386/libi386/biosacpi.c +++ b/sys/boot/i386/libi386/biosacpi.c @@ -51,7 +51,7 @@ void biosacpi_detect(void) { RSDP_DESCRIPTOR *rsdp; - char buf[16]; + char buf[24]; int revision; /* XXX check the BIOS datestamp */ |
