[PATCH] fs/*: trivial vsnprintf() conversion
It would very lame to get buffer overflow via one of the following. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Cc: Dave Kleikamp <shaggy@austin.ibm.com> Cc: Mark Fasheh <mark.fasheh@oracle.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
e0980dafa3
commit
4a6e617a4b
@@ -1709,7 +1709,7 @@ void udf_error(struct super_block *sb, const char *function,
|
||||
sb->s_dirt = 1;
|
||||
}
|
||||
va_start(args, fmt);
|
||||
vsprintf(error_buf, fmt, args);
|
||||
vsnprintf(error_buf, sizeof(error_buf), fmt, args);
|
||||
va_end(args);
|
||||
printk (KERN_CRIT "UDF-fs error (device %s): %s: %s\n",
|
||||
sb->s_id, function, error_buf);
|
||||
@@ -1721,7 +1721,7 @@ void udf_warning(struct super_block *sb, const char *function,
|
||||
va_list args;
|
||||
|
||||
va_start (args, fmt);
|
||||
vsprintf(error_buf, fmt, args);
|
||||
vsnprintf(error_buf, sizeof(error_buf), fmt, args);
|
||||
va_end(args);
|
||||
printk(KERN_WARNING "UDF-fs warning (device %s): %s: %s\n",
|
||||
sb->s_id, function, error_buf);
|
||||
|
Reference in New Issue
Block a user