Module Name:src
Committed By: fox
Date: Sun Jun 7 23:09:34 UTC 2020
Modified Files:
src/external/bsd/atf/lib/libatf-c: Makefile
Log Message:
external/bsd/atf: Suppress -Werror=stringop-truncation error
This logic correctly uses strncpy(3) to fully initialize a fixed-widt
Module Name:src
Committed By: fox
Date: Sun Jun 7 23:15:53 UTC 2020
Modified Files:
src/libexec/lfs_cleanerd: Makefile.inc
Log Message:
libexec/lfs_cleanerd: Suppress -Werror=stringop-truncation error
This logic correctly uses strncpy(3) to fully initialize a fixed-width
Module Name:src
Committed By: fox
Date: Sun Jun 7 23:20:52 UTC 2020
Modified Files:
src/tests/lib/libarchive: Makefile
Log Message:
tests/lib/libarchive: Suppress -Werror=stringop-truncation error
This logic correctly uses strncpy(3) to fully initialize a fixed-width fie
Module Name:src
Committed By: fox
Date: Sun Jun 7 23:26:54 UTC 2020
Modified Files:
src/external/cddl/osnet/usr.bin/ctfmerge: Makefile
Log Message:
external/cddl/osnet: Suppress -Werror=stringop-truncation error
This logic correctly uses strncpy(3) to fully initialize a
Module Name:src
Committed By: fox
Date: Sun Jun 7 23:29:16 UTC 2020
Modified Files:
src/external/mpl/dhcp/bin/server: Makefile
Log Message:
external/mpl/dhcp: Suppress -Werror=stringop-truncation error
This logic correctly uses strncpy(3) to fully initialize a fixed-widt
Module Name:src
Committed By: fox
Date: Sun Jun 7 23:33:02 UTC 2020
Modified Files:
src/libexec/httpd: bozohttpd.c
Log Message:
libexec/httpd: Fix the possible -Werror=stringop-truncation
Error was reported when build.sh was run with MKLIBCSANITIZER=yes flag.
Reviewed b
Module Name:src
Committed By: fox
Date: Fri Jun 12 01:20:32 UTC 2020
Modified Files:
src/lib/libpam/modules/pam_krb5: pam_krb5.c
Log Message:
lib/libpam: Fix the possible -Werror=stringop-truncation
Replace strncpy(3) with the safer strlcpy(3) and adjust the code.
Error
Module Name:src
Committed By: fox
Date: Fri Jun 12 14:37:51 UTC 2020
Modified Files:
src/external/gpl3/gcc/usr.bin/backend: Makefile
Log Message:
external/gpl3/gcc: Suppress -Werror=maybe-uninitialized
Seems like false positive since the ASM_GENERATE_INTERNAL_LABEL macro
Module Name:src
Committed By: fox
Date: Wed Feb 5 20:06:17 UTC 2020
Modified Files:
src/bin/csh: sem.c
Log Message:
bin/csh: Fix the -Wclobber warning.
Mark the variable as volatile as it can be clobbered when a vfork occurs.
Error was reported when build.sh was run wit
Module Name:src
Committed By: fox
Date: Wed Feb 5 20:11:54 UTC 2020
Modified Files:
src/games/battlestar: parse.c
Log Message:
games/battlestar: Fix the -Werror=restrict warning.
Replace strcpy(1) with the safer snprintf(3) which guarantees NULL
termination of strings.
Module Name:src
Committed By: fox
Date: Thu Feb 6 22:09:43 UTC 2020
Modified Files:
src/games/battlestar: parse.c
Log Message:
games/battlestar: Replace snprintf(3) with strlcpy(3) for better performance.
Reviewed by: kamil@
To generate a diff of this commit:
cvs rdiff
Module Name:src
Committed By: fox
Date: Fri Feb 7 01:25:08 UTC 2020
Modified Files:
src/bin/sh: main.c
Log Message:
bin/sh: Fixes -Werror=shadow causing build breaks.
Conflicting variable name, sigset_t sigs has been renamed to sigset_t mask
Reviewed by: kamil@
To gen
Module Name:src
Committed By: fox
Date: Fri Feb 7 20:13:26 UTC 2020
Modified Files:
src/usr.sbin/altq/altqstat: quip_client.c
Log Message:
usr.sbin/altq: Fix -Wstringop-truncation warning.
Looks like the original intention was to truncate the string at len.
Replace strn
Module Name:src
Committed By: fox
Date: Fri Feb 7 20:17:48 UTC 2020
Modified Files:
src/usr.bin/config: Makefile
Log Message:
usr.bin/config: Suppress -Werror=stringop-truncation error.
Add GCC_NO_STRINGOP_TRUNCATION to scan.c to prevent build failure.
Error was reporte
Module Name:src
Committed By: fox
Date: Fri Feb 7 20:34:18 UTC 2020
Modified Files:
src/games/hack: hack.end.c
Log Message:
games/hack: Fix -Wstringop-truncation warning.
Replace strncpy(3) with strlcpy(3).
Error was reported when build.sh was run with MKLIBCSANITIZER=
Module Name:src
Committed By: fox
Date: Fri Feb 7 21:53:20 UTC 2020
Modified Files:
src/usr.sbin/altq/altqstat: quip_client.c
Log Message:
usr.sbin/altq: Revert the strlcpy(3) change since this changes expected
behavior from strncpy(3).
Reviewed by: kamil@
To generate
Module Name:src
Committed By: fox
Date: Fri Feb 7 22:04:02 UTC 2020
Modified Files:
src/games/hack: hack.end.c
Log Message:
games/hack: Revert the strlcpy(1) change since this changes expected behavior
from strncpy(3).
Reviewed by: kamil@
To generate a diff of this co
Module Name:src
Committed By: fox
Date: Sat Feb 8 00:59:55 UTC 2020
Modified Files:
src/games/hack: Makefile
Log Message:
games/hack: Suppress -Werror=stringop-truncation error.
Add GCC_NO_STRINGOP_TRUNCATION to hack.end.c to prevent build failure.
Error was reported wh
Module Name:src
Committed By: fox
Date: Sat Feb 8 01:01:31 UTC 2020
Modified Files:
src/usr.sbin/altq/altqstat: Makefile
Log Message:
usr.sbin/altq: Suppress -Werror=stringop-truncation error.
Add GCC_NO_STRINGOP_TRUNCATION to quip_client.c to prevent build failure.
Err
Module Name:src
Committed By: fox
Date: Sat Feb 8 12:17:16 UTC 2020
Modified Files:
src/external/bsd/dhcpcd/dist/src: dhcp.c
Log Message:
external/bsd/dhcpcd: Fix a -Wconversion warning.
Type cast uint16_t to size_t to prevent implicit type conversion.
Error was reporte
Module Name:src
Committed By: fox
Date: Sat Feb 8 12:53:29 UTC 2020
Modified Files:
src/usr.bin/talk: Makefile
Log Message:
usr.bin/talk: Suppress -Werror=stringop-truncation error.
Add GCC_NO_STRINGOP_TRUNCATION to get_names.c to prevent build failure.
Error was report
Module Name:src
Committed By: fox
Date: Sat Feb 8 12:56:56 UTC 2020
Modified Files:
src/usr.sbin/fstyp: exfat.c
Log Message:
usr.sbin/fstyp: Fix -Werror=conversion error.
Type cast the size_t to uint32_t to prevent implicit type conversion errors.
Error was reported whe
Module Name:src
Committed By: fox
Date: Sat Feb 8 13:20:10 UTC 2020
Modified Files:
src/external/bsd/ntp/bin/ntpd: Makefile
Log Message:
external/bsd/ntp: Suppress -Werror=stringop-truncation error.
Add GCC_NO_STRINGOP_TRUNCATION to refclock_jjy.c to prevent build failur
Module Name:src
Committed By: fox
Date: Sat Feb 8 13:33:56 UTC 2020
Modified Files:
src/usr.bin/tftp: Makefile
Log Message:
user.bin/tftp: Suppress -Werror=format-overflow error.
Add -Wno-error=format-overflow tftp.c to prevent build failure.
Error was reported when bui
Module Name:src
Committed By: fox
Date: Sun Feb 9 07:47:50 UTC 2020
Modified Files:
src/external/bsd/ipf/bin/ipmon: Makefile
Log Message:
external/bsd/ipf: Suppress -Werror=format-overflow= error.
Add -Wno-error=format-overflow in ipmon.c to prevent build failure.
Error
Module Name:src
Committed By: fox
Date: Sun Feb 9 07:51:20 UTC 2020
Modified Files:
src/external/bsd/ipf/bin/ipsend: Makefile
Log Message:
external/bsd/ipf: Suppress -Werror=maybe-uninitialized error.
Add -Wno-error=maybe-uninitialized in ipsopt.c to prevent build failur
Module Name:src
Committed By: fox
Date: Sun Feb 9 07:55:13 UTC 2020
Modified Files:
src/external/cddl/osnet/usr.bin/ctfconvert: Makefile
Log Message:
external/cddl/osnet: Suppress -Werror=stringop-truncation error.
Add GCC_NO_STRINGOP_TRUNCATION dwarf.c to prevent build
Module Name:src
Committed By: fox
Date: Sun Feb 9 07:59:44 UTC 2020
Modified Files:
src/external/mpl/dhcp/bin/server: Makefile
Log Message:
external/mpl/dhcp: Suppress -Werror=format-overflow error.
Add -Wno-error=format-overflow mdb6.c to prevent build failure.
Error w
Module Name:src
Committed By: fox
Date: Sun Feb 9 08:04:40 UTC 2020
Modified Files:
src/external/gpl3/gcc/usr.bin/cc1: Makefile
src/external/gpl3/gcc/usr.bin/cc1obj: Makefile
Log Message:
external/gpl3/gcc: Suppress -Werror=format-overflow error.
Add -Wno-error=f
Module Name:src
Committed By: fox
Date: Sun Feb 9 08:10:26 UTC 2020
Modified Files:
src/usr.bin/xlint/xlint: xlint.c
Log Message:
usr.bin/xlint: Fix -Werror=format-overflow= error.
Replace sprintf(3) with snprintf(3).
Error was reported when build.sh was run with MKLIBC
Module Name:src
Committed By: fox
Date: Sun Feb 9 15:10:31 UTC 2020
Modified Files:
src/usr.sbin/srtconfig: Makefile
Log Message:
usr.sbin/srtconfig: Suppress -Werror=stringop-truncation error.
Add GCC_NO_STRINGOP_TRUNCATION to srtconfig.c to prevent build failure.
Erro
Module Name:src
Committed By: fox
Date: Sun Feb 9 15:13:28 UTC 2020
Modified Files:
src/usr.sbin/timed/timed: Makefile
Log Message:
usr.sbin/timed: Suppress -Werror=stringop-truncation error.
Add GCC_NO_STRINGOP_TRUNCATION master.c to prevent build failure.
Error was re
Module Name:src
Committed By: fox
Date: Sun Feb 9 15:52:48 UTC 2020
Modified Files:
src/usr.sbin/ypserv/makedbm: Makefile
Log Message:
usr.sbin/ypserv: Suppress -Werror=format-truncation= error.
Add GCC_NO_FORMAT_TRUNCATION makedbm.c to prevent build failure.
Error was
Module Name:src
Committed By: fox
Date: Wed Feb 12 00:30:48 UTC 2020
Modified Files:
src/external/bsd/ipf/bin/ipmon: Makefile
src/external/bsd/ipf/bin/ipsend: Makefile
Log Message:
external/bsd/ipf: Fix build failure under LLVM.
-Wno-error= flag now only applies t
Module Name:src
Committed By: fox
Date: Wed Feb 12 00:36:38 UTC 2020
Modified Files:
src/external/gpl3/gcc/usr.bin/cc1: Makefile
src/external/gpl3/gcc/usr.bin/cc1obj: Makefile
Log Message:
external/gpl3/gcc: Fix build failure under LLVM.
-Wno-error= flag now only
Module Name:src
Committed By: fox
Date: Wed Feb 12 00:41:50 UTC 2020
Modified Files:
src/external/mpl/dhcp/bin/server: Makefile
Log Message:
external/mpl/dhcp: Fix build failure under LLVM.
-Wno-error= flag now only applies to gcc 8 and not to LLVM based builds.
Reviewed
Module Name:src
Committed By: fox
Date: Sat Feb 22 14:47:29 UTC 2020
Modified Files:
src/common/lib/libc/stdlib: random.c
Log Message:
common/lib/libc/stdlib: Fix possible signed integer overflow.
common/lib/libc/stdlib/random.c:482:6 can result in signed integer overflow
Module Name:src
Committed By: fox
Date: Mon Mar 9 15:37:46 UTC 2020
Modified Files:
src/external/cddl/osnet/dist/uts/common/fs/zfs: dmu_tx.c spa.c
Log Message:
external/cddl/osnet: Fix possible signed integer overflow
Detected by UBSan and fixed upstream
Cherry-pick:
>F
Module Name:src
Committed By: fox
Date: Mon Mar 9 15:40:50 UTC 2020
Modified Files:
src/external/cddl/osnet/dist/uts/common/fs/zfs: metaslab.c
Log Message:
external/cddl/osnet: Fix possible null pointer access.
Detected by UBSan and fixed upstream, pick only the fix from
Module Name:src
Committed By: fox
Date: Tue Mar 17 00:50:12 UTC 2020
Modified Files:
src/external/cddl/osnet/lib/libdtrace: Makefile
Log Message:
external/cddl/osnet: Supress -Werror=maybe-uninitialized error in libdtrace.
It looks like this is a false positive, since the
Module Name:src
Committed By: fox
Date: Tue Mar 17 00:54:03 UTC 2020
Modified Files:
src/external/cddl/osnet/dist/uts/common/fs/zfs: zfs_acl.c
Log Message:
external/cddl/osnet: Fix -Werror=maybe-uninitialized error in zfs_acl.c.
Detected by build.sh with MKLIBCSANITIZER=y
Module Name:src
Committed By: fox
Date: Tue Mar 17 00:57:55 UTC 2020
Modified Files:
src/external/bsd/iscsi/dist/src/lib: initiator.c
Log Message:
external/bsd/iscsi: Fix -Werror=maybe-uninitialized error in initiator.c.
Error was reported when build.sh was run with MKLIB
Module Name:src
Committed By: fox
Date: Tue Mar 17 01:36:29 UTC 2020
Modified Files:
src/external/cddl/osnet/lib/libdtrace: Makefile
Log Message:
external/cddl/osnet: Do not suppress the warning output for libdtrace.
Changed -Wno-maybe-uninitialized to -Wno-error=maybe-un
Module Name:src
Committed By: fox
Date: Sat Apr 4 21:21:35 UTC 2020
Modified Files:
src/lib/libusbhid: data.c
Log Message:
lib/libusbhid: Fix possible left shift changes signedness bit.
This bug was reported by UBSan runs.
lib/libusbhid/data.c:58:25
lib/libusbhid/data.c
Module Name:src
Committed By: fox
Date: Sat Apr 4 21:23:04 UTC 2020
Modified Files:
src/lib/libusbhid: usage.c
Log Message:
lib/libusbhid: Fix possible left shift changes signedness bit.
This bug was reported by UBSan runs.
lib/libusbhid/usage.c:247:27
lib/libusbhid/usa
Module Name:src
Committed By: fox
Date: Sat Apr 4 21:26:17 UTC 2020
Modified Files:
src/lib/libusbhid: parse.c
Log Message:
lib/libusbhid: Fix possible left shift changes signedness bit.
This bug was reported by UBSan runs.
lib/libusbhid/parse.c:246:20
Can result in le
Module Name:src
Committed By: fox
Date: Sat May 2 19:35:03 UTC 2020
Modified Files:
src/external/bsd/dhcpcd/sbin/dhcpcd: Makefile
Log Message:
external/bsd/dhcpcd: Suppress -Werror=sign-conversion error.
Add -Wno-error=sign-conversion to prevent build failure, when run w
Module Name:src
Committed By: fox
Date: Thu Dec 13 16:20:20 UTC 2018
Modified Files:
src/sys/dev/usb: usbdevs
Log Message:
Add Logitech Gamepad F310 and Logitech Dual Action Gamepad
To generate a diff of this commit:
cvs rdiff -u -r1.762 -r1.763 src/sys/dev/usb/usbdevs
Module Name:src
Committed By: fox
Date: Thu Dec 13 16:23:34 UTC 2018
Modified Files:
src/sys/dev/usb: usbdevs.h usbdevs_data.h
Log Message:
regen
To generate a diff of this commit:
cvs rdiff -u -r1.755 -r1.756 src/sys/dev/usb/usbdevs.h \
src/sys/dev/usb/usbdevs_data.
Module Name:src
Committed By: fox
Date: Tue Dec 18 07:11:35 UTC 2018
Modified Files:
src/tests/sys/uvm: t_uvm_physseg.c
Log Message:
Fixed the build failures caused by incompatible type comparisons.
Reviewed by
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.
Module Name:src
Committed By: fox
Date: Wed Jan 16 13:21:02 UTC 2019
Modified Files:
src/tests/sys/uvm: t_uvm_physseg.c
Log Message:
Fixed the build failures caused by incompatible type comparisons when
VM_PHYSSEG is > 1.
Reviewed by
To generate a diff of this commit:
Module Name:src
Committed By: fox
Date: Wed Jan 16 13:35:51 UTC 2019
Modified Files:
src/tests/sys/uvm: t_uvm_physseg.c
Log Message:
Fixed issues with uvm_physseg_plug test case.
There is a condition check which failed for VM_PHYSSEG_MAX == 2 (not for
1 or 3 and above), i
Module Name:src
Committed By: fox
Date: Wed Jan 16 13:45:29 UTC 2019
Modified Files:
src/tests/sys/uvm: t_uvm_physseg.c
Log Message:
Fixed issues with uvm_physseg_atboot_free_leak test case.
"\n" in ATF discriptions make it behave in weird ways, like saying "this
test is
Module Name:src
Committed By: fox
Date: Wed Jan 16 13:54:17 UTC 2019
Modified Files:
src/tests/sys/uvm: t_uvm_physseg.c
Log Message:
Fixed issues with uvm_page_physunload_delete_end test case.
1. "avail_start" and "start" were different, resulting in unreachable code in
u
54 matches
Mail list logo