mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-29 02:20:51 +00:00
Don't let printf_unfiltered functions inherit a fixed-size buffer
from their _filtered counterparts.
This commit is contained in:
@@ -1301,7 +1301,7 @@ vfprintf_unfiltered (stream, format, args)
|
||||
char *format;
|
||||
va_list args;
|
||||
{
|
||||
vfprintf_maybe_filtered (stream, format, args, 0);
|
||||
vfprintf (stream, format, args);
|
||||
}
|
||||
|
||||
void
|
||||
@@ -1317,7 +1317,7 @@ vprintf_unfiltered (format, args)
|
||||
char *format;
|
||||
va_list args;
|
||||
{
|
||||
vfprintf_maybe_filtered (gdb_stdout, format, args, 0);
|
||||
vfprintf (gdb_stdout, format, args);
|
||||
}
|
||||
|
||||
/* VARARGS */
|
||||
|
||||
Reference in New Issue
Block a user