diff options
Diffstat (limited to 'src/format/elf')
-rw-r--r-- | src/format/elf/strings.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/format/elf/strings.c b/src/format/elf/strings.c index e885632..2af08b2 100644 --- a/src/format/elf/strings.c +++ b/src/format/elf/strings.c @@ -24,6 +24,7 @@ #include "strings.h" +#include <assert.h> #include <ctype.h> #include <malloc.h> #include <string.h> @@ -201,6 +202,7 @@ static bool parse_elf_string_data(GElfFormat *format, phys_t start, phys_t size, init_vmpa(&pos, start + i, address + i); instr = g_raw_instruction_new_array(content, MDS_8_BITS, end - i, &pos, format->endian); + assert(instr != NULL); g_raw_instruction_mark_as_string(G_RAW_INSTRUCTION(instr), true); |