summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-10-17 14:01:00 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-10-17 14:01:00 +0200
commitc343db455eb3105f11bb5ac290d77ab2006b0209 (patch)
tree4b92c690553062462742a3d41bdb3fac727b9b83 /arch
parentc0cff31be705014ce127d6a6570b02f8515de3e2 (diff)
parentcf8afe5c53621eda385be961bc72329a2adcd767 (diff)
downloadlinux-0-day-c343db455eb3105f11bb5ac290d77ab2006b0209.tar.gz
linux-0-day-c343db455eb3105f11bb5ac290d77ab2006b0209.tar.xz
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/kernel/unwind.c b/arch/parisc/kernel/unwind.c
index f329b466e68f6..2d14f17838d23 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);
}