From c6a5bdc18979c09c7a2a9cf23fff8ac5781962ae Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Fri, 30 Nov 2018 02:36:54 +0100 Subject: hurd: Fix returning value for fcntl(F_*LK*) to avoid calling va_end again, etc. * sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Directly return value returned by __f_setlk. --- sysdeps/mach/hurd/fcntl.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'sysdeps/mach/hurd/fcntl.c') diff --git a/sysdeps/mach/hurd/fcntl.c b/sysdeps/mach/hurd/fcntl.c index 6fa63f2fc7..f7f9abce03 100644 --- a/sysdeps/mach/hurd/fcntl.c +++ b/sysdeps/mach/hurd/fcntl.c @@ -141,9 +141,8 @@ __libc_fcntl (int fd, int cmd, ...) wait = 1; /* FALLTHROUGH */ case F_SETLK: - result = __f_setlk (fd, fl->l_type, fl->l_whence, - fl->l_start, fl->l_len, wait); - break; + return __f_setlk (fd, fl->l_type, fl->l_whence, + fl->l_start, fl->l_len, wait); default: errno = EINVAL; return -1; @@ -166,9 +165,8 @@ __libc_fcntl (int fd, int cmd, ...) wait = 1; /* FALLTHROUGH */ case F_SETLK: - result = __f_setlk (fd, fl->l_type, fl->l_whence, - fl->l_start, fl->l_len, wait); - break; + return __f_setlk (fd, fl->l_type, fl->l_whence, + fl->l_start, fl->l_len, wait); default: errno = EINVAL; return -1; -- cgit 1.4.1