mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
PR gprof/13325
* hist.c (hist_assign_samples_1): Make sure that inner loop iterator remains valid.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2011-10-25 Wei Guozhi <carrot@google.com>
|
||||||
|
|
||||||
|
PR gprof/13325
|
||||||
|
* hist.c (hist_assign_samples_1): Make sure that inner loop
|
||||||
|
iterator remains valid.
|
||||||
|
|
||||||
2011-10-24 Nick Clifton <nickc@redhat.com>
|
2011-10-24 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* po/ja.po: New Japanese translation.
|
* po/ja.po: New Japanese translation.
|
||||||
|
@ -398,7 +398,12 @@ hist_assign_samples_1 (histogram *r)
|
|||||||
/* If high end of bin is below entry address,
|
/* If high end of bin is below entry address,
|
||||||
go for next bin. */
|
go for next bin. */
|
||||||
if (bin_high_pc < sym_low_pc)
|
if (bin_high_pc < sym_low_pc)
|
||||||
break;
|
{
|
||||||
|
/* PR gprof/13325: Make sure that j does not go below 1. */
|
||||||
|
if (j < 1)
|
||||||
|
j = 1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
/* If low end of bin is above high end of symbol,
|
/* If low end of bin is above high end of symbol,
|
||||||
go for next symbol. */
|
go for next symbol. */
|
||||||
|
Reference in New Issue
Block a user