From fecb045fc54e79f19a5b978f311bf6229ebe34dc Mon Sep 17 00:00:00 2001 From: zhushengle Date: Tue, 20 Oct 2020 21:53:05 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=9F=E5=9B=A0:=20=E5=A4=9A=E7=BA=BF?= =?UTF-8?q?=E7=A8=8B=E6=83=85=E5=86=B5=E4=B8=8B=EF=BC=8Cmusl=E4=B8=ADsetui?= =?UTF-8?q?d=E5=A4=84=E7=90=86=E5=B9=B6=E5=8F=91=E6=9C=BA=E5=88=B6?= =?UTF-8?q?=E6=97=B6=E5=AF=BC=E8=87=B4=E7=BA=BF=E7=A8=8B=E6=AD=BB=E9=94=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/unistd/setxid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unistd/setxid.c b/src/unistd/setxid.c index 0239f8afa..647beaeb9 100755 --- a/src/unistd/setxid.c +++ b/src/unistd/setxid.c @@ -30,7 +30,7 @@ int __setxid(int nr, int id, int eid, int sid) /* err is initially nonzero so that failure of the first thread does not * trigger the safety kill above. */ struct ctx c = { .nr = nr, .id = id, .eid = eid, .sid = sid, .err = -1 }; - __synccall(do_setxid, &c); + do_setxid(&c); if (c.err) { if (c.err>0) errno = c.err; return -1; -- Gitee