aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-05-01release 1.2.4v1.2.4Rich Felker
2023-04-24fix return value of wmemcmp for extreme wchar_t valuesRich Felker
2023-04-14fix wide printf numbered argument buffer overflowGabriel Ravier
2023-04-11wait4: fix missing rusage on x32 due to wrong success conditionAlexey Izbyshev
2023-04-11semtimedop: fix timespec kernel ABI mismatch for 32-bit timeouts on x32Alexey Izbyshev
2023-04-11getopt: fix null pointer arithmetic ubAlexey Izbyshev
2023-04-11nftw: fix use of uninitialized struct statAlexey Izbyshev
2023-04-11fix inadvertently static local var in dynlink get_lfs64Rich Felker
2023-04-07dns: check length field in tcp response messageAlexey Kodanev
2023-03-22fix swprintf handling of nul character in outputRich Felker
2023-03-21in printf, use ferror macro rather than directly inspecting flags bitRich Felker
2023-03-21remove wide printf dependency on ugly hack in vfprintfRich Felker
2023-03-21fix (normal, narrow) printf erroneously processing %n after output errorsRich Felker
2023-03-21fix wide printf continuation after output or encoding errorsRich Felker
2023-03-20fix wide printf forms ignoring width for %lc format specifierRich Felker
2023-03-03poll: fix misuse of timespec type on 32-bit archs without poll syscallRich Felker
2023-03-02select: fix 64-bit timeout truncation on pre-time64 kernelsAlexey Izbyshev
2023-02-28dup3: don't set FD_CLOEXEC on failure on kernels without dup3 syscallRich Felker
2023-02-28fix dup3 ignoring all flags but O_CLOEXEC on archs with SYS_dup2 syscallRich Felker
2023-02-28fix pipe2 silently ignoring unknown flags on old kernelsRich Felker
2023-02-28getservbyport_r: fix wrong result if getnameinfo fails with EAI_OVERFLOWAlexey Izbyshev
2023-02-28getservbyport_r: fix out-of-bounds buffer readAlexey Izbyshev
2023-02-28getifaddrs: fix UB via taking address of null pointer union dereferenceAlexey Izbyshev
2023-02-28accept4: don't fall back to accept if we got unknown flagsAlexey Izbyshev
2023-02-27fix potential read past end of buffer in getnameinfo host name lookupAlexey Izbyshev
2023-02-27dns: fix workaround for systems defaulting to ipv6-only socketsAlexey Izbyshev
2023-02-27dns: handle early eof in tcp fallbackAlexey Izbyshev
2023-02-27prevent CNAME/PTR parsing from reading data past the response endAlexey Izbyshev
2023-02-27fix out-of-bounds reads in __dns_parseAlexey Izbyshev
2023-02-23fix incorrect unit for CPU_SETSIZE macroRich Felker
2023-02-12dns: prefer monotonic clock for timeoutsA. Wilcox
2023-02-12fix return value of wcs{,n}cmp for extreme wchar_t valuesGabriel Ravier
2023-02-12math: fix undefined shift in logfSzabolcs Nagy
2023-02-12inet_pton: fix uninitialized memory use for IPv4-mapped IPv6 addressesAlexey Izbyshev
2023-02-12hsearch: fix null pointer arithmetic UBSzabolcs Nagy
2023-02-12increase sendmsg internal buffer to support SCM_MAX_FDColin Cross
2023-02-12mq_notify: block all (application) signals in the worker threadRich Felker
2023-02-12mq_notify: join worker thread before returning in error pathRich Felker
2023-02-12mq_notify: rework to fix use-after-close/double-close bugsRich Felker
2023-02-11mq_notify: use semaphore instead of barrier to sync args consumptionRich Felker
2023-02-11fix pthread_detach inadvertently acting as cancellation point in race caseRich Felker
2023-02-11powerpc-sf longjmp clobbering of val argumentRich Felker
2023-02-09riscv64: add vforkPedro Falcato
2023-02-09fix wrong sigaction syscall ABI on mips*, or1k, microblaze, riscv64Rich Felker
2023-02-08fix integer overflow in WIFSTOPPED macroRich Felker
2023-01-18fix debugger tracking of shared libraries on mips with PIE main programRich Felker
2023-01-06expose memmem under baseline POSIX feature profileRich Felker
2022-12-17use libc-internal malloc for pthread_atforkRich Felker
2022-12-14prevent invalid reads of nl_arg in printf_coreMarkus Wichmann
2022-12-14elf.h: add ELFCOMPRESS_ZSTDFangrui Song