Skip to content

Commit

Permalink
sh: Fix up uninitialized variable warning in dwarf unwinder.
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
Paul Mundt committed Oct 19, 2009
1 parent 1c8db71 commit eca28e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/sh/kernel/dwarf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit eca28e3

Please sign in to comment.