index
:
mirror/musl
this commit
master
rs-1.0
mirror of git://git.musl-libc.org/musl
Leah Neukirchen
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
Commit message (
Expand
)
Author
Age
Files
Lines
*
math: fix ld80 powl(x,huge) and powl(LDBL_MAX,small)
Szabolcs Nagy
2023-08-19
1
-13
/
+21
*
math: fix ld80 acoshl(x) for x < 0
Szabolcs Nagy
2023-08-19
1
-3
/
+7
*
fix rejection of dns responses with pointers past 512 byte offset
Rich Felker
2023-07-17
1
-2
/
+2
*
dns stub resolver: increase buffer size to handle chained CNAMEs
Rich Felker
2023-07-04
1
-1
/
+1
*
printf core: fix gratuitous integer formatting buffer size
Rich Felker
2023-06-12
1
-1
/
+1
*
all printf variants: fix argument type handling for %c and %lc
Rich Felker
2023-06-12
2
-4
/
+4
*
fix public clone function to be safe and usable by applications
Rich Felker
2023-06-01
3
-16
/
+68
*
fix broken thread list unlocking after fork
Rich Felker
2023-06-01
1
-1
/
+1
*
mbrtowc: Fix wrong return value when n > UINT_MAX
Alexey Izbyshev
2023-05-26
1
-1
/
+1
*
fix return value of wmemcmp for extreme wchar_t values
Rich Felker
2023-04-24
1
-1
/
+1
*
fix wide printf numbered argument buffer overflow
Gabriel Ravier
2023-04-14
1
-2
/
+2
*
wait4: fix missing rusage on x32 due to wrong success condition
Alexey Izbyshev
2023-04-11
1
-1
/
+1
*
semtimedop: fix timespec kernel ABI mismatch for 32-bit timeouts on x32
Alexey Izbyshev
2023-04-11
1
-1
/
+2
*
getopt: fix null pointer arithmetic ub
Alexey Izbyshev
2023-04-11
1
-1
/
+2
*
nftw: fix use of uninitialized struct stat
Alexey Izbyshev
2023-04-11
1
-1
/
+3
*
dns: check length field in tcp response message
Alexey Kodanev
2023-04-07
1
-0
/
+1
*
fix swprintf handling of nul character in output
Rich Felker
2023-03-22
1
-0
/
+1
*
in printf, use ferror macro rather than directly inspecting flags bit
Rich Felker
2023-03-21
1
-2
/
+2
*
remove wide printf dependency on ugly hack in vfprintf
Rich Felker
2023-03-21
2
-9
/
+15
*
fix (normal, narrow) printf erroneously processing %n after output errors
Rich Felker
2023-03-21
1
-0
/
+3
*
fix wide printf continuation after output or encoding errors
Rich Felker
2023-03-21
1
-2
/
+6
*
fix wide printf forms ignoring width for %lc format specifier
Rich Felker
2023-03-20
1
-5
/
+2
*
poll: fix misuse of timespec type on 32-bit archs without poll syscall
Rich Felker
2023-03-03
1
-2
/
+7
*
select: fix 64-bit timeout truncation on pre-time64 kernels
Alexey Izbyshev
2023-03-02
1
-0
/
+1
*
dup3: don't set FD_CLOEXEC on failure on kernels without dup3 syscall
Rich Felker
2023-02-28
1
-1
/
+2
*
fix dup3 ignoring all flags but O_CLOEXEC on archs with SYS_dup2 syscall
Rich Felker
2023-02-28
1
-1
/
+2
*
fix pipe2 silently ignoring unknown flags on old kernels
Rich Felker
2023-02-28
1
-0
/
+1
*
getservbyport_r: fix wrong result if getnameinfo fails with EAI_OVERFLOW
Alexey Izbyshev
2023-02-28
1
-0
/
+2
*
getservbyport_r: fix out-of-bounds buffer read
Alexey Izbyshev
2023-02-28
1
-1
/
+1
*
getifaddrs: fix UB via taking address of null pointer union dereference
Alexey Izbyshev
2023-02-28
1
-7
/
+7
*
accept4: don't fall back to accept if we got unknown flags
Alexey Izbyshev
2023-02-28
1
-0
/
+4
*
fix potential read past end of buffer in getnameinfo host name lookup
Alexey Izbyshev
2023-02-27
1
-0
/
+1
*
dns: fix workaround for systems defaulting to ipv6-only sockets
Alexey Izbyshev
2023-02-27
1
-15
/
+16
*
dns: handle early eof in tcp fallback
Alexey Izbyshev
2023-02-27
1
-1
/
+1
*
prevent CNAME/PTR parsing from reading data past the response end
Alexey Izbyshev
2023-02-27
4
-7
/
+7
*
fix out-of-bounds reads in __dns_parse
Alexey Izbyshev
2023-02-27
1
-3
/
+3
*
dns: prefer monotonic clock for timeouts
A. Wilcox
2023-02-12
1
-1
/
+2
*
fix return value of wcs{,n}cmp for extreme wchar_t values
Gabriel Ravier
2023-02-12
2
-2
/
+2
*
math: fix undefined shift in logf
Szabolcs Nagy
2023-02-12
1
-1
/
+1
*
inet_pton: fix uninitialized memory use for IPv4-mapped IPv6 addresses
Alexey Izbyshev
2023-02-12
1
-0
/
+1
*
hsearch: fix null pointer arithmetic UB
Szabolcs Nagy
2023-02-12
1
-2
/
+2
*
increase sendmsg internal buffer to support SCM_MAX_FD
Colin Cross
2023-02-12
1
-2
/
+5
*
mq_notify: block all (application) signals in the worker thread
Rich Felker
2023-02-12
1
-0
/
+5
*
mq_notify: join worker thread before returning in error path
Rich Felker
2023-02-12
1
-2
/
+5
*
mq_notify: rework to fix use-after-close/double-close bugs
Rich Felker
2023-02-12
1
-8
/
+15
*
mq_notify: use semaphore instead of barrier to sync args consumption
Rich Felker
2023-02-11
1
-5
/
+9
*
fix pthread_detach inadvertently acting as cancellation point in race case
Rich Felker
2023-02-11
1
-2
/
+6
*
powerpc-sf longjmp clobbering of val argument
Rich Felker
2023-02-11
1
-4
/
+4
*
riscv64: add vfork
Pedro Falcato
2023-02-09
1
-0
/
+12
*
fix wrong sigaction syscall ABI on mips*, or1k, microblaze, riscv64
Rich Felker
2023-02-09
5
-38
/
+9
[next]