summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2023-05-05malloc: ensure aligned_alloc visibilityHEADposix-complianceA. Wilcox1-0/+1
2023-05-05renameat: ensure equality test doesn't affect symlinksA. Wilcox1-2/+2
2023-05-05<sys/time.h>: Ensure time bits are always 64A. Wilcox1-0/+1
2023-05-05strftime: add %l supportA. Wilcox1-0/+2
2023-05-05renameat: finish bringing interface to standard behaviourA. Wilcox1-17/+39
2023-05-05renameat: further bring towards standard behaviourA. Wilcox1-1/+34
2023-05-05renameat: bring behaviour closer to POSIXA. Wilcox1-4/+31
2023-05-05various: users of pipe2 need to define FTM nowA. Wilcox4-0/+4
2023-05-05fpathconf: use -1 for _PC_LINK_MAXA. Wilcox1-1/+1
2023-05-05getcwd: fail with ENOMEM on ENAMETOOLONGA. Wilcox1-1/+4
2023-05-05unistd: namespace pollution fixesA. Wilcox1-5/+10
2023-05-05confstr: specify Adélie paths for CS_PATH [DO NOT UPSTREAM]A. Wilcox1-1/+1
2023-05-05pthread_attr_set*: return ENOTSUP for values not supported instead of EINVALA. Wilcox2-2/+2
2023-05-05system: return 0 if /bin/sh is missingA. Wilcox1-1/+3
2023-05-05setlocale: specifically fail on VSX4* localesA. Wilcox1-0/+2
2023-05-05Continue trying execution with "/bin/sh" for execlp and execvpQuentin Rameau3-2/+34
2023-05-05time: C11 visibility fixesA. Wilcox3-2/+10
2023-05-05stdlib: Ensure C11 fns are only visible in C11A. Wilcox1-0/+4
2023-05-05stdlib: Move mkostemp to _GNU_SOURCE/_BSD_SOURCEA. Wilcox1-1/+1
2023-05-05pathconf: add _PC_TIMESTAMP_RESOLUTIONA. Wilcox2-2/+4
2023-05-05sysconf: Add _SC_XOPEN_UUCPA. Wilcox2-1/+2
2023-05-01release 1.2.4v1.2.4masterRich Felker2-1/+70
2023-04-24fix return value of wmemcmp for extreme wchar_t valuesRich Felker1-1/+1
2023-04-14fix wide printf numbered argument buffer overflowGabriel Ravier1-2/+2
2023-04-11wait4: fix missing rusage on x32 due to wrong success conditionAlexey Izbyshev1-1/+1
2023-04-11semtimedop: fix timespec kernel ABI mismatch for 32-bit timeouts on x32Alexey Izbyshev1-1/+2
2023-04-11getopt: fix null pointer arithmetic ubAlexey Izbyshev1-1/+2
2023-04-11nftw: fix use of uninitialized struct statAlexey Izbyshev1-1/+3
2023-04-11fix inadvertently static local var in dynlink get_lfs64Rich Felker1-1/+2
2023-04-07dns: check length field in tcp response messageAlexey Kodanev1-0/+1
2023-03-22fix swprintf handling of nul character in outputRich Felker1-0/+1
2023-03-21in printf, use ferror macro rather than directly inspecting flags bitRich Felker1-2/+2
2023-03-21remove wide printf dependency on ugly hack in vfprintfRich Felker2-9/+15
2023-03-21fix (normal, narrow) printf erroneously processing %n after output errorsRich Felker1-0/+3
2023-03-21fix wide printf continuation after output or encoding errorsRich Felker1-2/+6
2023-03-20fix wide printf forms ignoring width for %lc format specifierRich Felker1-5/+2
2023-03-03poll: fix misuse of timespec type on 32-bit archs without poll syscallRich Felker1-2/+7
2023-03-02select: fix 64-bit timeout truncation on pre-time64 kernelsAlexey Izbyshev1-0/+1
2023-02-28dup3: don't set FD_CLOEXEC on failure on kernels without dup3 syscallRich Felker1-1/+2
2023-02-28fix dup3 ignoring all flags but O_CLOEXEC on archs with SYS_dup2 syscallRich Felker1-1/+2
2023-02-28fix pipe2 silently ignoring unknown flags on old kernelsRich Felker1-0/+1
2023-02-28getservbyport_r: fix wrong result if getnameinfo fails with EAI_OVERFLOWAlexey Izbyshev1-0/+2
2023-02-28getservbyport_r: fix out-of-bounds buffer readAlexey Izbyshev1-1/+1
2023-02-28getifaddrs: fix UB via taking address of null pointer union dereferenceAlexey Izbyshev1-7/+7
2023-02-28accept4: don't fall back to accept if we got unknown flagsAlexey Izbyshev1-0/+4
2023-02-27fix potential read past end of buffer in getnameinfo host name lookupAlexey Izbyshev1-0/+1
2023-02-27dns: fix workaround for systems defaulting to ipv6-only socketsAlexey Izbyshev1-15/+16
2023-02-27dns: handle early eof in tcp fallbackAlexey Izbyshev1-1/+1
2023-02-27prevent CNAME/PTR parsing from reading data past the response endAlexey Izbyshev4-7/+7
2023-02-27fix out-of-bounds reads in __dns_parseAlexey Izbyshev1-3/+3