Module Name:    src
Committed By:   maxv
Date:           Fri Aug 23 11:19:39 UTC 2019

Modified Files:
        src/sys/compat/linux/common: linux_fcntl.h

Log Message:
When dealing with an unknown value, set -1, to prevent (harmless)
uninitialized accesses later.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/compat/linux/common/linux_fcntl.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/compat/linux/common/linux_fcntl.h
diff -u src/sys/compat/linux/common/linux_fcntl.h:1.17 src/sys/compat/linux/common/linux_fcntl.h:1.18
--- src/sys/compat/linux/common/linux_fcntl.h:1.17	Sun Mar  1 13:19:39 2015
+++ src/sys/compat/linux/common/linux_fcntl.h	Fri Aug 23 11:19:39 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: linux_fcntl.h,v 1.17 2015/03/01 13:19:39 njoly Exp $	*/
+/*	$NetBSD: linux_fcntl.h,v 1.18 2019/08/23 11:19:39 maxv Exp $	*/
 
 /*-
  * Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
@@ -132,6 +132,9 @@ LINUX##_to_bsd_##FLOCK(struct flock *bfp
 	case src_f##_WRLCK: \
 		dst->l_type = dst_f##_WRLCK; \
 		break; \
+	default: \
+		dst->l_type = -1; \
+		break; \
 	} \
     }
 

Reply via email to