summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* release 1.2.4HEADv1.2.4masterRich Felker2023-05-012-1/+70
* fix return value of wmemcmp for extreme wchar_t valuesRich Felker2023-04-241-1/+1
* fix wide printf numbered argument buffer overflowGabriel Ravier2023-04-141-2/+2
* wait4: fix missing rusage on x32 due to wrong success conditionAlexey Izbyshev2023-04-111-1/+1
* semtimedop: fix timespec kernel ABI mismatch for 32-bit timeouts on x32Alexey Izbyshev2023-04-111-1/+2
* getopt: fix null pointer arithmetic ubAlexey Izbyshev2023-04-111-1/+2
* nftw: fix use of uninitialized struct statAlexey Izbyshev2023-04-111-1/+3
* fix inadvertently static local var in dynlink get_lfs64Rich Felker2023-04-111-1/+2
* dns: check length field in tcp response messageAlexey Kodanev2023-04-071-0/+1
* fix swprintf handling of nul character in outputRich Felker2023-03-221-0/+1
* in printf, use ferror macro rather than directly inspecting flags bitRich Felker2023-03-211-2/+2
* remove wide printf dependency on ugly hack in vfprintfRich Felker2023-03-212-9/+15
* fix (normal, narrow) printf erroneously processing %n after output errorsRich Felker2023-03-211-0/+3
* fix wide printf continuation after output or encoding errorsRich Felker2023-03-211-2/+6
* fix wide printf forms ignoring width for %lc format specifierRich Felker2023-03-201-5/+2
* 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