summaryrefslogtreecommitdiff
path: root/tools/intel_bios_reader.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/intel_bios_reader.c')
-rw-r--r--tools/intel_bios_reader.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/intel_bios_reader.c b/tools/intel_bios_reader.c
index 6538870d..4767425f 100644
--- a/tools/intel_bios_reader.c
+++ b/tools/intel_bios_reader.c
@@ -1375,7 +1375,7 @@ static void hex_dump(const struct bdb_block *block)
static bool dump_section(struct context *context, int section_id)
{
struct dumper *dumper = NULL;
- const struct bdb_block *block;
+ struct bdb_block *block;
int i;
block = find_section(context, section_id);
@@ -1400,6 +1400,8 @@ static bool dump_section(struct context *context, int section_id)
dumper->dump(context, block);
printf("\n");
+ free(block);
+
return true;
}