diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/format/elf/strings.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,5 +1,10 @@ 17-03-20 Cyrille Bagard <nocbos@gmail.com> + * src/format/elf/strings.c: + Take the last byte into account when analyzing the string section. + +17-03-20 Cyrille Bagard <nocbos@gmail.com> + * plugins/pychrysa/format/symbol.c: * src/analysis/disass/output.c: Update code. diff --git a/src/format/elf/strings.c b/src/format/elf/strings.c index 799b8fe..755163e 100644 --- a/src/format/elf/strings.c +++ b/src/format/elf/strings.c @@ -186,10 +186,10 @@ bool parse_elf_string_data(GElfFormat *format, phys_t start, phys_t size, virt_t for (end = i + 1; end < size; end++) if (!isprint(data[end])) break; - if (isspace(data[end]) && (end + 1) < size) + if (end < size && isspace(data[end])) end++; - if (data[end] == '\0' && (end + 1) < size) + if (end < size && data[end] == '\0') end++; init_vmpa(&pos, start + i, address + i); |