Age | Commit message (Expand) | Author | Files | Lines |
2023-04-11 | fix inadvertently static local var in dynlink get_lfs64 | Rich Felker | 1 | -1/+2 |
2023-04-07 | dns: check length field in tcp response message | Alexey Kodanev | 1 | -0/+1 |
2023-03-22 | fix swprintf handling of nul character in output | Rich Felker | 1 | -0/+1 |
2023-03-21 | in printf, use ferror macro rather than directly inspecting flags bit | Rich Felker | 1 | -2/+2 |
2023-03-21 | remove wide printf dependency on ugly hack in vfprintf | Rich Felker | 2 | -9/+15 |
2023-03-21 | fix (normal, narrow) printf erroneously processing %n after output errors | Rich Felker | 1 | -0/+3 |
2023-03-21 | fix wide printf continuation after output or encoding errors | Rich Felker | 1 | -2/+6 |
2023-03-20 | fix wide printf forms ignoring width for %lc format specifier | Rich Felker | 1 | -5/+2 |
2023-03-03 | poll: fix misuse of timespec type on 32-bit archs without poll syscall | Rich Felker | 1 | -2/+7 |
2023-03-02 | select: fix 64-bit timeout truncation on pre-time64 kernels | Alexey Izbyshev | 1 | -0/+1 |
2023-02-28 | dup3: don't set FD_CLOEXEC on failure on kernels without dup3 syscall | Rich Felker | 1 | -1/+2 |
2023-02-28 | fix dup3 ignoring all flags but O_CLOEXEC on archs with SYS_dup2 syscall | Rich Felker | 1 | -1/+2 |
2023-02-28 | fix pipe2 silently ignoring unknown flags on old kernels | Rich Felker | 1 | -0/+1 |
2023-02-28 | getservbyport_r: fix wrong result if getnameinfo fails with EAI_OVERFLOW | Alexey Izbyshev | 1 | -0/+2 |
2023-02-28 | getservbyport_r: fix out-of-bounds buffer read | Alexey Izbyshev | 1 | -1/+1 |
2023-02-28 | getifaddrs: fix UB via taking address of null pointer union dereference | Alexey Izbyshev | 1 | -7/+7 |
2023-02-28 | accept4: don't fall back to accept if we got unknown flags | Alexey Izbyshev | 1 | -0/+4 |
2023-02-27 | fix potential read past end of buffer in getnameinfo host name lookup | Alexey Izbyshev | 1 | -0/+1 |
2023-02-27 | dns: fix workaround for systems defaulting to ipv6-only sockets | Alexey Izbyshev | 1 | -15/+16 |
2023-02-27 | dns: handle early eof in tcp fallback | Alexey Izbyshev | 1 | -1/+1 |
2023-02-27 | prevent CNAME/PTR parsing from reading data past the response end | Alexey Izbyshev | 4 | -7/+7 |
2023-02-27 | fix out-of-bounds reads in __dns_parse | Alexey Izbyshev | 1 | -3/+3 |
2023-02-23 | fix incorrect unit for CPU_SETSIZE macro | Rich Felker | 1 | -1/+1 |
2023-02-12 | dns: prefer monotonic clock for timeouts | A. Wilcox | 1 | -1/+2 |
2023-02-12 | fix return value of wcs{,n}cmp for extreme wchar_t values | Gabriel Ravier | 2 | -2/+2 |
2023-02-12 | math: fix undefined shift in logf | Szabolcs Nagy | 1 | -1/+1 |
2023-02-12 | inet_pton: fix uninitialized memory use for IPv4-mapped IPv6 addresses | Alexey Izbyshev | 1 | -0/+1 |
2023-02-12 | hsearch: fix null pointer arithmetic UB | Szabolcs Nagy | 1 | -2/+2 |
2023-02-12 | increase sendmsg internal buffer to support SCM_MAX_FD | Colin Cross | 1 | -2/+5 |
2023-02-12 | mq_notify: block all (application) signals in the worker thread | Rich Felker | 1 | -0/+5 |
2023-02-12 | mq_notify: join worker thread before returning in error path | Rich Felker | 1 | -2/+5 |
2023-02-12 | mq_notify: rework to fix use-after-close/double-close bugs | Rich Felker | 1 | -8/+15 |
2023-02-11 | mq_notify: use semaphore instead of barrier to sync args consumption | Rich Felker | 1 | -5/+9 |
2023-02-11 | fix pthread_detach inadvertently acting as cancellation point in race case | Rich Felker | 1 | -2/+6 |
2023-02-11 | powerpc-sf longjmp clobbering of val argument | Rich Felker | 1 | -4/+4 |
2023-02-09 | riscv64: add vfork | Pedro Falcato | 1 | -0/+12 |
2023-02-09 | fix wrong sigaction syscall ABI on mips*, or1k, microblaze, riscv64 | Rich Felker | 14 | -50/+12 |
2023-02-08 | fix integer overflow in WIFSTOPPED macro | Rich Felker | 2 | -2/+2 |
2023-01-18 | fix debugger tracking of shared libraries on mips with PIE main program | Rich Felker | 5 | -0/+11 |
2023-01-06 | expose memmem under baseline POSIX feature profile | Rich Felker | 1 | -1/+1 |
2022-12-17 | use libc-internal malloc for pthread_atfork | Rich Felker | 1 | -0/+5 |
2022-12-14 | prevent invalid reads of nl_arg in printf_core | Markus Wichmann | 1 | -6/+8 |
2022-12-14 | elf.h: add ELFCOMPRESS_ZSTD | Fangrui Song | 1 | -0/+1 |
2022-12-13 | semaphores: fix missed wakes from ABA bug in waiter count logic | Rich Felker | 4 | -12/+19 |
2022-11-30 | ldso: fix invalid early references to extern-linkage libc.page_size | Rich Felker | 1 | -1/+8 |
2022-11-12 | pthread_atfork: fix return value on malloc failure | Alexey Izbyshev | 1 | -1/+2 |
2022-11-10 | fix double-processing of DT_RELR relocations in ldso relocating itself | Rich Felker | 1 | -0/+1 |
2022-11-07 | fix strverscmp comparison of digit sequence with non-digits | Rich Felker | 1 | -3/+3 |
2022-11-05 | fix async thread cancellation stack alignment | Rich Felker | 1 | -1/+6 |
2022-10-20 | fix return value of gethostby{name[2],addr} with no result but no error | Rich Felker | 2 | -2/+2 |