]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit - binutils/ChangeLog
readelf.c: Use unsigned long to iterate over num_syms
authorH.J. Lu <hjl.tools@gmail.com>
Thu, 19 Mar 2020 12:22:18 +0000 (05:22 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Thu, 19 Mar 2020 12:22:30 +0000 (05:22 -0700)
commitef3df11042c3dbaf695c1260b42364688cafa8ea
treeeb262750bef84ffa1484c2745f29cbb69357e5e9
parentcada5fc921e39a1945c422eea055c8b326d8d353
readelf.c: Use unsigned long to iterate over num_syms

process_symbol_table () has

  unsigned long num_syms;
  ...
  for (si = 0, psym = symtab; si < num_syms; si++, psym++)

We should use unsigned long to iterate over num_syms.

* readelf.c (process_symbol_table): Use unsigned long for si.
binutils/ChangeLog
binutils/readelf.c