diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-10-17 14:01:00 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-10-17 14:01:00 +0200 |
commit | c343db455eb3105f11bb5ac290d77ab2006b0209 (patch) | |
tree | 4b92c690553062462742a3d41bdb3fac727b9b83 /arch | |
parent | c0cff31be705014ce127d6a6570b02f8515de3e2 (diff) | |
parent | cf8afe5c53621eda385be961bc72329a2adcd767 (diff) | |
download | linux-c343db455eb3105f11bb5ac290d77ab2006b0209.tar.bz2 |
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
Diffstat (limited to 'arch')
-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, r.gr[30] = get_parisc_stackpointer(); regs = &r; } - unwind_frame_init(info, task, &r); + unwind_frame_init(info, task, regs); } else { unwind_frame_init_from_blocked_task(info, task); } |