Commit eca28e37 authored by Paul Mundt's avatar Paul Mundt

sh: Fix up uninitialized variable warning in dwarf unwinder.

Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 1c8db713
......@@ -902,7 +902,7 @@ static int dwarf_parse_section(char *eh_frame_start, char *eh_frame_end,
u32 entry_type;
void *p, *entry;
int count, err = 0;
unsigned long len;
unsigned long len = 0;
unsigned int c_entries, f_entries;
unsigned char *end;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment