summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorLines
2023-03-03poll: fix misuse of timespec type on 32-bit archs without poll syscallRich Felker-2/+7
2023-03-02select: fix 64-bit timeout truncation on pre-time64 kernelsAlexey Izbyshev-0/+1
2023-02-28dup3: don't set FD_CLOEXEC on failure on kernels without dup3 syscallRich Felker-1/+2
2023-02-28fix dup3 ignoring all flags but O_CLOEXEC on archs with SYS_dup2 syscallRich Felker-1/+2
2023-02-28fix pipe2 silently ignoring unknown flags on old kernelsRich Felker-0/+1
2023-02-28getservbyport_r: fix wrong result if getnameinfo fails with EAI_OVERFLOWAlexey Izbyshev-0/+2
2023-02-28getservbyport_r: fix out-of-bounds buffer readAlexey Izbyshev-1/+1
2023-02-28getifaddrs: fix UB via taking address of null pointer union dereferenceAlexey Izbyshev-7/+7
2023-02-28accept4: don't fall back to accept if we got unknown flagsAlexey Izbyshev-0/+4
2023-02-27fix potential read past end of buffer in getnameinfo host name lookupAlexey Izbyshev-0/+1
2023-02-27dns: fix workaround for systems defaulting to ipv6-only socketsAlexey Izbyshev-15/+16
2023-02-27dns: handle early eof in tcp fallbackAlexey Izbyshev-1/+1
2023-02-27prevent CNAME/PTR parsing from reading data past the response endAlexey Izbyshev-7/+7
2023-02-27fix out-of-bounds reads in __dns_parseAlexey Izbyshev-3/+3
2023-02-23fix incorrect unit for CPU_SETSIZE macroRich Felker-1/+1
2023-02-12dns: prefer monotonic clock for timeoutsA. Wilcox-1/+2
2023-02-12fix return value of wcs{,n}cmp for extreme wchar_t valuesGabriel Ravier-2/+2
2023-02-12math: fix undefined shift in logfSzabolcs Nagy-1/+1
2023-02-12inet_pton: fix uninitialized memory use for IPv4-mapped IPv6 addressesAlexey Izbyshev-0/+1
2023-02-12hsearch: fix null pointer arithmetic UBSzabolcs Nagy-2/+2
2023-02-12increase sendmsg internal buffer to support SCM_MAX_FDColin Cross-2/+5
2023-02-12mq_notify: block all (application) signals in the worker threadRich Felker-0/+5
2023-02-12mq_notify: join worker thread before returning in error pathRich Felker-2/+5
2023-02-12mq_notify: rework to fix use-after-close/double-close bugsRich Felker-8/+15
2023-02-11mq_notify: use semaphore instead of barrier to sync args consumptionRich Felker-5/+9
2023-02-11fix pthread_detach inadvertently acting as cancellation point in race caseRich Felker-2/+6
2023-02-11powerpc-sf longjmp clobbering of val argumentRich Felker-4/+4
2023-02-09riscv64: add vforkPedro Falcato-0/+12
2023-02-09fix wrong sigaction syscall ABI on mips*, or1k, microblaze, riscv64Rich Felker-50/+12
2023-02-08fix integer overflow in WIFSTOPPED macroRich Felker-2/+2
2023-01-18fix debugger tracking of shared libraries on mips with PIE main programRich Felker-0/+11
2023-01-06expose memmem under baseline POSIX feature profileRich Felker-1/+1
2022-12-17use libc-internal malloc for pthread_atforkRich Felker-0/+5
2022-12-14prevent invalid reads of nl_arg in printf_coreMarkus Wichmann-6/+8
2022-12-14elf.h: add ELFCOMPRESS_ZSTDFangrui Song-0/+1
2022-12-13semaphores: fix missed wakes from ABA bug in waiter count logicRich Felker-12/+19
2022-11-30ldso: fix invalid early references to extern-linkage libc.page_sizeRich Felker-1/+8
2022-11-12pthread_atfork: fix return value on malloc failureAlexey Izbyshev-1/+2
2022-11-10fix double-processing of DT_RELR relocations in ldso relocating itselfRich Felker-0/+1
2022-11-07fix strverscmp comparison of digit sequence with non-digitsRich Felker-3/+3
2022-11-05fix async thread cancellation stack alignmentRich Felker-1/+6
2022-10-20fix return value of gethostby{name[2],addr} with no result but no errorRich Felker-2/+2
2022-10-19clean up dns_parse_callbackRich Felker-13/+13
2022-10-19dns response handling: don't treat too many addresses as an errorRich Felker-1/+1
2022-10-19dns response handling: ignore presence of wrong-type RRsRich Felker-2/+8
2022-10-19fix missing synchronization of pthread TSD keys with MT-forkRich Felker-0/+12
2022-10-19fgets: avoid arithmetic overflow when n==INT_MIN is passedRich Felker-2/+3
2022-10-19fix AS-safety of close when aio is in use and fd map is expandedRich Felker-0/+6
2022-10-19fix use of uninitialized dummy_fut in aio_suspendAlexey Izbyshev-1/+1
2022-10-19fix potential deadlock between multithreaded fork and aioRich Felker-4/+21