From 2127f26023a9be443e05b592b35c77b454ba8f77 Mon Sep 17 00:00:00 2001 From: Archie Cobbs Date: Fri, 4 Dec 1998 22:54:57 +0000 Subject: Examine all occurrences of sprintf(), strcat(), and str[n]cpy() for possible buffer overflow problems. Replaced most sprintf()'s with snprintf(); for others cases, added terminating NUL bytes where appropriate, replaced constants like "16" with sizeof(), etc. These changes include several bug fixes, but most changes are for maintainability's sake. Any instance where it wasn't "immediately obvious" that a buffer overflow could not occur was made safer. Reviewed by: Bruce Evans Reviewed by: Matthew Dillon Reviewed by: Mike Spengler --- sys/gnu/i386/isa/sound/awe_wave.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/gnu') diff --git a/sys/gnu/i386/isa/sound/awe_wave.c b/sys/gnu/i386/isa/sound/awe_wave.c index 3dc591e635cd..63a1a97a8784 100644 --- a/sys/gnu/i386/isa/sound/awe_wave.c +++ b/sys/gnu/i386/isa/sound/awe_wave.c @@ -578,7 +578,7 @@ int attach_awe(void) /* intialize AWE32 hardware */ awe_initialize(); - sprintf(awe_info.name, "AWE32-%s (RAM%dk)", + snprintf(awe_info.name, sizeof(awe_info.name), "AWE32-%s (RAM%dk)", AWEDRV_VERSION, awe_mem_size/1024); #ifdef __FreeBSD__ printk("awe0: ", awe_mem_size/1024); -- cgit v1.3