svn commit: r364687 - stable/12/sys/compat/linux

Edward Tomasz Napierala trasz at FreeBSD.org
Mon Aug 24 14:17:25 UTC 2020


Author: trasz
Date: Mon Aug 24 14:17:25 2020
New Revision: 364687
URL: https://svnweb.freebsd.org/changeset/base/364687

Log:
  MFC r357491 by dchagin:
  
  linux_to_native_clockid() properly initializes nwhich variable (or return error),
  so don't initialize nwhich in declaration and remove stale comment from r161304.

Modified:
  stable/12/sys/compat/linux/linux_time.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/compat/linux/linux_time.c
==============================================================================
--- stable/12/sys/compat/linux/linux_time.c	Mon Aug 24 14:13:20 2020	(r364686)
+++ stable/12/sys/compat/linux/linux_time.c	Mon Aug 24 14:17:25 2020	(r364687)
@@ -253,7 +253,7 @@ linux_clock_gettime(struct thread *td, struct linux_cl
 	struct thread *targettd;
 	struct proc *p;
 	int error, clockwhich;
-	clockid_t nwhich = 0;	/* XXX: GCC */
+	clockid_t nwhich;
 	pid_t pid;
 	lwpid_t tid;
 
@@ -382,7 +382,7 @@ linux_clock_settime(struct thread *td, struct linux_cl
 	struct timespec ts;
 	struct l_timespec lts;
 	int error;
-	clockid_t nwhich = 0;	/* XXX: GCC */
+	clockid_t nwhich;
 
 	LIN_SDT_PROBE2(time, linux_clock_settime, entry, args->which, args->tp);
 
@@ -422,7 +422,7 @@ linux_clock_getres(struct thread *td, struct linux_clo
 	struct timespec ts;
 	struct l_timespec lts;
 	int error, clockwhich;
-	clockid_t nwhich = 0;	/* XXX: GCC */
+	clockid_t nwhich;
 	pid_t pid;
 	lwpid_t tid;
 


More information about the svn-src-all mailing list