From 973724cb999b3692b40cfb052120f8b2347a0d64 Mon Sep 17 00:00:00 2001 From: Kirill Smirnov Date: Mon, 12 Sep 2016 13:37:26 +0300 Subject: [PATCH] Fix an uninitialized variable. Signed-off-by: Kirill Smirnov --- elf2flt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/elf2flt.c b/elf2flt.c index 3f31569..1519e06 100644 --- a/elf2flt.c +++ b/elf2flt.c @@ -363,6 +363,7 @@ dump_symbols(symbols, number_of_symbols); *n_relocs = 0; flat_relocs = NULL; flat_reloc_count = 0; + sym_reloc_size = 0; rc = 0; pflags = 0; /* Silence gcc warnings */ -- 2.39.5