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