utils.c (make_hex_string): Fix off-by-one error.

gdb/ChangeLog:

	* utils.c (make_hex_string): Fix off-by-one error.
This commit is contained in:
Doug Evans 2014-12-13 14:04:05 -08:00
parent c1b5a1a6e7
commit dc4d68869c
2 changed files with 5 additions and 1 deletions

View file

@ -1124,7 +1124,7 @@ make_hex_string (const gdb_byte *data, size_t length)
p = result;
for (i = 0; i < length; ++i)
p += xsnprintf (p, 2, "%02x", data[i]);
p += xsnprintf (p, 3, "%02x", data[i]);
*p = '\0';
return result;
}