From: Kirill Smirnov Date: Mon, 12 Sep 2016 10:37:26 +0000 (+0300) Subject: Fix an uninitialized variable. X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=973724cb999b3692b40cfb052120f8b2347a0d64;p=elf2flt.git Fix an uninitialized variable. Signed-off-by: Kirill Smirnov --- 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 */