Fix signedness warning

This is the updated version using uintptr_t as Alan Modra suggested.

2014-11-18  Jan-Benedict Glaw  <jbglaw@lug-owl.de>

	* dwarf.c (process_extended_line_op): Fix signedness warning.
This commit is contained in:
Jan-Benedict Glaw 2014-11-19 14:13:30 +01:00
parent 54a28c4ce5
commit e44c58ce2f
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-11-18 Jan-Benedict Glaw <jbglaw@lug-owl.de>
* dwarf.c (process_extended_line_op): Fix signedness warning.
2014-11-18 Nick Clifton <nickc@redhat.com>
PR binutuls/17605

View File

@ -416,7 +416,7 @@ process_extended_line_op (unsigned char * data,
len = read_uleb128 (data, & bytes_read, end);
data += bytes_read;
if (len == 0 || data == end || len > (end - data))
if (len == 0 || data == end || len > (uintptr_t) (end - data))
{
warn (_("Badly formed extended line op encountered!\n"));
return bytes_read;