From noreply at github.com Wed Nov 8 09:09:09 2023 From: noreply at github.com (Lucas Holt) Date: Wed, 08 Nov 2023 06:09:09 -0800 Subject: [Midnightbsd-cvs] [MidnightBSD/src] e26b80: fix an issue with boot environments as the -r flag... Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: e26b8050e0e7f33ab5fcf5c6c1cd2a963cde3acc https://github.com/MidnightBSD/src/commit/e26b8050e0e7f33ab5fcf5c6c1cd2a963cde3acc Author: Lucas Holt Date: 2023-11-08 (Wed, 08 Nov 2023) Changed paths: M usr.sbin/midnightbsd-update/midnightbsd-update.sh Log Message: ----------- fix an issue with boot environments as the -r flag is needed with deep From noreply at github.com Wed Nov 8 09:09:29 2023 From: noreply at github.com (Lucas Holt) Date: Wed, 08 Nov 2023 06:09:29 -0800 Subject: [Midnightbsd-cvs] [MidnightBSD/src] e174ff: add endian.h for linux compatibility Message-ID: Branch: refs/heads/stable/3.1 Home: https://github.com/MidnightBSD/src Commit: e174ffa20b331cbefdb373089d23ea9f4cba74d5 https://github.com/MidnightBSD/src/commit/e174ffa20b331cbefdb373089d23ea9f4cba74d5 Author: Lucas Holt Date: 2023-10-18 (Wed, 18 Oct 2023) Changed paths: M include/Makefile A include/endian.h Log Message: ----------- add endian.h for linux compatibility Commit: 02f66cfe521aef54640424083f34ef416cd4167a https://github.com/MidnightBSD/src/commit/02f66cfe521aef54640424083f34ef416cd4167a Author: Lucas Holt Date: 2023-11-08 (Wed, 08 Nov 2023) Changed paths: M usr.sbin/midnightbsd-update/midnightbsd-update.sh Log Message: ----------- fix an issue with boot environments as the -r flag is needed with deep Compare: https://github.com/MidnightBSD/src/compare/c45275c30404...02f66cfe521a From noreply at github.com Wed Nov 8 09:11:41 2023 From: noreply at github.com (Lucas Holt) Date: Wed, 08 Nov 2023 06:11:41 -0800 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 5abe10: In some instances, the regcomp() implementation wo... Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: 5abe1045d8198148058cf984d5d0d20b9047d752 https://github.com/MidnightBSD/src/commit/5abe1045d8198148058cf984d5d0d20b9047d752 Author: Lucas Holt Date: 2023-11-08 (Wed, 08 Nov 2023) Changed paths: M lib/libc/regex/regcomp.c Log Message: ----------- In some instances, the regcomp() implementation would inadvertently sign-extend a character in the regular expression. Additionally, alphabetic wide-characters were not properly being considered as such Obtained from: FreeBSD From noreply at github.com Wed Nov 8 09:11:56 2023 From: noreply at github.com (Lucas Holt) Date: Wed, 08 Nov 2023 06:11:56 -0800 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 91f3d9: In some instances, the regcomp() implementation wo... Message-ID: Branch: refs/heads/stable/3.1 Home: https://github.com/MidnightBSD/src Commit: 91f3d903576286c597a9cabc097adffed1fd3675 https://github.com/MidnightBSD/src/commit/91f3d903576286c597a9cabc097adffed1fd3675 Author: Lucas Holt Date: 2023-11-08 (Wed, 08 Nov 2023) Changed paths: M lib/libc/regex/regcomp.c Log Message: ----------- In some instances, the regcomp() implementation would inadvertently sign-extend a character in the regular expression. Additionally, alphabetic wide-characters were not properly being considered as such Obtained from: FreeBSD From noreply at github.com Wed Nov 8 09:13:33 2023 From: noreply at github.com (Lucas Holt) Date: Wed, 08 Nov 2023 06:13:33 -0800 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 496a9c: For line-buffered streams the __sflush() function ... Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: 496a9ca51e1f5242182f0898cdb12842f9a41f47 https://github.com/MidnightBSD/src/commit/496a9ca51e1f5242182f0898cdb12842f9a41f47 Author: Lucas Holt Date: 2023-11-08 (Wed, 08 Nov 2023) Changed paths: M lib/libc/stdio/fflush.c Log Message: ----------- For line-buffered streams the __sflush() function did not correctly update the FILE object's write space member when the write(2) system call returns an error. Depending on the nature of an application that calls libc's stdio functions and the presence of errors returned from the write(2) system call (or an overridden stdio write routine) a heap buffer overfly may occur. Such overflows may lead to data corruption or the execution of arbitrary code at the privilege level of the calling program. Obtained from: FreeBSD From noreply at github.com Wed Nov 8 09:13:50 2023 From: noreply at github.com (Lucas Holt) Date: Wed, 08 Nov 2023 06:13:50 -0800 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 7389a9: For line-buffered streams the __sflush() function ... Message-ID: Branch: refs/heads/stable/3.1 Home: https://github.com/MidnightBSD/src Commit: 7389a9228b0cfcdcf7542b267048e8adc9955a0f https://github.com/MidnightBSD/src/commit/7389a9228b0cfcdcf7542b267048e8adc9955a0f Author: Lucas Holt Date: 2023-11-08 (Wed, 08 Nov 2023) Changed paths: M lib/libc/stdio/fflush.c Log Message: ----------- For line-buffered streams the __sflush() function did not correctly update the FILE object's write space member when the write(2) system call returns an error. Depending on the nature of an application that calls libc's stdio functions and the presence of errors returned from the write(2) system call (or an overridden stdio write routine) a heap buffer overfly may occur. Such overflows may lead to data corruption or the execution of arbitrary code at the privilege level of the calling program. Obtained from: FreeBSD From noreply at github.com Thu Nov 9 16:18:16 2023 From: noreply at github.com (Lucas Holt) Date: Thu, 09 Nov 2023 13:18:16 -0800 Subject: [Midnightbsd-cvs] [MidnightBSD/src] Message-ID: Branch: refs/tags/3.1.1 Home: https://github.com/MidnightBSD/src