Author: ngie
Date: Wed Jan 4 03:54:54 2017
New Revision: 311240
URL: https://svnweb.freebsd.org/changeset/base/311240
Log:
kqueue_desc_passing: initialize m.msg_flags to 0
This mutes an uninitialized scalar warning from Coverity
MFC after: 3 days
Reported by: Coverity
CID: 979620
Modified:
head/contrib/netbsd-tests/lib/libc/sys/t_kevent.c
Modified: head/contrib/netbsd-tests/lib/libc/sys/t_kevent.c
==============================================================================
--- head/contrib/netbsd-tests/lib/libc/sys/t_kevent.c Wed Jan 4 03:41:16
2017 (r311239)
+++ head/contrib/netbsd-tests/lib/libc/sys/t_kevent.c Wed Jan 4 03:54:54
2017 (r311240)
@@ -101,6 +101,9 @@ ATF_TC_BODY(kqueue_desc_passing, tc)
m.msg_namelen = 0;
m.msg_control = msg;
m.msg_controllen = CMSG_SPACE(sizeof(int));
+#ifdef __FreeBSD__
+ m.msg_flags = 0;
+#endif
child = fork();
if (child == 0) {
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"