mirror of
https://git.yoctoproject.org/poky
synced 2026-07-28 19:17:46 +02:00
License-Update: copyright years (From OE-Core rev: 4ad997fa4df80d543ac5dabe61f292f5819da302) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
From 7944494196d4a9b33e0ae64a7e20f86e19c336d3 Mon Sep 17 00:00:00 2001
|
|
From: "Todd C. Miller" <Todd.Miller@sudo.ws>
|
|
Date: Wed, 26 Oct 2022 16:35:30 -0600
|
|
Subject: [PATCH] Fix compilation error on Linux/mips.
|
|
|
|
Upstream-Status: Backport [https://github.com/sudo-project/sudo/commit/7944494196d4a9b33e0ae64a7e20f86e19c336d3]
|
|
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
|
|
---
|
|
src/exec_ptrace.c | 9 +++++----
|
|
1 file changed, 5 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/src/exec_ptrace.c b/src/exec_ptrace.c
|
|
index 81cd10bc2..208a75f88 100644
|
|
--- a/src/exec_ptrace.c
|
|
+++ b/src/exec_ptrace.c
|
|
@@ -282,16 +282,17 @@ set_sc_arg4(struct sudo_ptrace_regs *regs, unsigned long addr)
|
|
static bool
|
|
ptrace_getregs(int pid, struct sudo_ptrace_regs *regs, int compat)
|
|
{
|
|
+ struct iovec iov;
|
|
debug_decl(ptrace_getregs, SUDO_DEBUG_EXEC);
|
|
|
|
+ iov.iov_base = ®s->u;
|
|
+ iov.iov_len = sizeof(regs->u);
|
|
+
|
|
# ifdef __mips__
|
|
/* PTRACE_GETREGSET has bugs with the MIPS o32 ABI at least. */
|
|
- if (ptrace(PTRACE_GETREGS, pid, NULL, ®s->u) == -1)
|
|
+ if (ptrace(PTRACE_GETREGS, pid, NULL, iov.iov_base) == -1)
|
|
debug_return_bool(false);
|
|
# else
|
|
- struct iovec iov;
|
|
- iov.iov_base = ®s->u;
|
|
- iov.iov_len = sizeof(regs->u);
|
|
if (ptrace(PTRACE_GETREGSET, pid, (void *)NT_PRSTATUS, &iov) == -1)
|
|
debug_return_bool(false);
|
|
# endif /* __mips__ */
|