forked from Imagelibrary/binutils-gdb
Fix off-by-one error in complaint_internal
complaint_internal had an off-by-one error, where it would allow one extra complaint to be issued. gdb/ChangeLog 2018-10-04 Tom Tromey <tom@tromey.com> * complaints.c (complaint_internal): Correctly check complaint count.
This commit is contained in:
@@ -56,7 +56,7 @@ complaint_internal (const char *fmt, ...)
|
||||
{
|
||||
va_list args;
|
||||
|
||||
if (counters[fmt]++ > stop_whining)
|
||||
if (++counters[fmt] > stop_whining)
|
||||
return;
|
||||
|
||||
va_start (args, fmt);
|
||||
|
||||
Reference in New Issue
Block a user