Source-Changes-D archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: CVS commit: src/lib/libc/arch/arm/misc
> Module Name: src
> Committed By: christos
> Date: Thu Feb 27 10:55:27 UTC 2025
>
> Modified Files:
> src/lib/libc/arch/arm/misc: arm_initfini.c
>
> Log Message:
> use the latest version that does not abort on error.
>
> @@ -46,6 +46,7 @@
> #include <stdbool.h>
> #include <string.h>
> #include <stddef.h>
> +#include <stdlib.h>
>
> __dso_hidden int _libc_arm_fpu_present;
> #ifndef __ARM_ARCH_EXT_IDIV__
> @@ -76,7 +77,7 @@
> query.sysctl_flags = SYSCTL_VERSION;
> len = sizeof(md);
> if (sysctl(mib, 2, md, &len, &query, sizeof(query)) == -1)
> - return;
> + abort();
It looks like this change does the opposite of what you say it does?
It seems you committed what you meant to commit in rev. 1.8 the first
time around, and then changed it to what you didn't mean to commit in
rev. 1.9.
Home |
Main Index |
Thread Index |
Old Index