Skip to content

Commit c343db4

Browse files
committed
Merge branch 'parisc-4.19-3' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux
Helge writes: "parisc fix: Fix an unitialized variable usage in the parisc unwind code." * 'parisc-4.19-3' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux: parisc: Fix uninitialized variable usage in unwind.c
2 parents c0cff31 + cf8afe5 commit c343db4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/parisc/kernel/unwind.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ void unwind_frame_init_task(struct unwind_frame_info *info,
426426
r.gr[30] = get_parisc_stackpointer();
427427
regs = &r;
428428
}
429-
unwind_frame_init(info, task, &r);
429+
unwind_frame_init(info, task, regs);
430430
} else {
431431
unwind_frame_init_from_blocked_task(info, task);
432432
}

0 commit comments

Comments
 (0)