diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-10-17 08:01:00 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-10-17 08:01:00 -0400 |
commit | c343db455eb3105f11bb5ac290d77ab2006b0209 (patch) | |
tree | 4b92c690553062462742a3d41bdb3fac727b9b83 | |
parent | c0cff31be705014ce127d6a6570b02f8515de3e2 (diff) | |
parent | cf8afe5c53621eda385be961bc72329a2adcd767 (diff) |
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
-rw-r--r-- | arch/parisc/kernel/unwind.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/kernel/unwind.c b/arch/parisc/kernel/unwind.c index f329b466e68f..2d14f17838d2 100644 --- a/arch/parisc/kernel/unwind.c +++ b/arch/parisc/kernel/unwind.c | |||
@@ -426,7 +426,7 @@ void unwind_frame_init_task(struct unwind_frame_info *info, | |||
426 | r.gr[30] = get_parisc_stackpointer(); | 426 | r.gr[30] = get_parisc_stackpointer(); |
427 | regs = &r; | 427 | regs = &r; |
428 | } | 428 | } |
429 | unwind_frame_init(info, task, &r); | 429 | unwind_frame_init(info, task, regs); |
430 | } else { | 430 | } else { |
431 | unwind_frame_init_from_blocked_task(info, task); | 431 | unwind_frame_init_from_blocked_task(info, task); |
432 | } | 432 | } |