From: Stricted Date: Fri, 16 Mar 2018 11:43:09 +0000 (+0100) Subject: scripts: sortextable: fix relocs_size initialization X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=5ae576f4a59d9d2865728d021833c12b6057cb5b;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git scripts: sortextable: fix relocs_size initialization --- diff --git a/scripts/sortextable.h b/scripts/sortextable.h index f5eb43d42926..3f064799a8c3 100644 --- a/scripts/sortextable.h +++ b/scripts/sortextable.h @@ -101,7 +101,7 @@ do_func(Elf_Ehdr *ehdr, char const *const fname, table_sort_t custom_sort) Elf_Sym *sort_needed_sym; Elf_Shdr *sort_needed_sec; Elf_Rel *relocs = NULL; - int relocs_size; + int relocs_size = 0; uint32_t *sort_done_location; const char *secstrtab; const char *strtab;