readelf.c: Fix a typo in comments

* readelf.c (get_dynamic_data): Replace "memory chekers" with
	"memory checkers" in comments.
This commit is contained in:
H.J. Lu 2020-03-08 18:43:42 -07:00
parent 2f57795b8b
commit a15de1f599
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2020-03-08 H.J. Lu <hongjiu.lu@intel.com>
* readelf.c (get_dynamic_data): Replace "memory chekers" with
"memory checkers" in comments.
2020-03-06 Simon Marchi <simon.marchi@efficios.com>
PR 25491

View File

@ -11428,7 +11428,7 @@ get_dynamic_data (Filedata * filedata, bfd_size_type number, unsigned int ent_si
return NULL;
}
/* Be kind to memory chekers (eg valgrind, address sanitizer) by not
/* Be kind to memory checkers (eg valgrind, address sanitizer) by not
attempting to allocate memory when the read is bound to fail. */
if (ent_size * number > filedata->file_size)
{