summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2022-05-01drop direct use of stat syscalls in internal __map_fileRich Felker1-3/+3
2022-05-01provide an internal namespace-safe __fstatatRich Felker2-1/+11
2022-05-01drop direct use of stat syscalls in fchmodatRich Felker1-8/+7
2022-05-01drop use of stat operation in temporary file name generationRich Felker2-10/+6
2022-05-01only fallback to gettimeofday/settimeofday syscalls if they existStefan O'Rear1-0/+4
2022-05-01only use getrlimit/setrlimit syscalls if they existStefan O'Rear2-1/+11
2022-04-27don't remap internal-use syscall macros to nonexistent time32 syscallsStefan O'Rear1-10/+10
2022-04-20add missing POSIX confstr keys for pthread CFLAGS/LDFLAGSRich Felker1-1/+1
2022-04-10fix incorrect parameter name in internal netlink.h RTA_OK macroOndrej Jirman1-1/+1
2022-03-27accept null pointer as message argument to gettext functionspsykose1-0/+3
2022-03-16fix invalid free of duplocale object when malloc has been replacedIsaiah Poston1-0/+5
2022-03-08nice: return EPERM instead of EACCESAlexey Kodanev1-1/+8
2022-03-08protect stack canary from leak via read-as-string by zeroing second bytejvoisin1-0/+9
2022-03-08math: avoid runtime conversions of floating-point constantsSzabolcs Nagy2-2/+6
2022-02-20fix spurious failures by fgetws when buffer ends with partial characterRich Felker1-6/+1
2022-02-19add missing strerror text for key managementpelco1-0/+4
2022-02-09fix out-of-bound read processing time zone data with distant-past datesRich Felker1-14/+12
2022-01-18fix potentially wrong-sign zero in cproj functions at infinityRich Felker3-3/+3
2022-01-09make fseek detect and produce an error for invalid whence argumentsRich Felker1-0/+7
2021-12-27fix wcwidth of hangul combining (vowel/final) lettersRich Felker1-58/+60
2021-12-09fix mismatched signatures for strtod_l familyRich Felker2-7/+22
2021-11-29fix hwcap access in powerpc-sf setjmp/longjmpRich Felker2-2/+2
2021-10-19fix struct layout mismatch in sound ioctl time32 fallback conversionRich Felker1-2/+7
2021-09-23add qsort_r and make qsort a wrapper around itÉrico Nogueira3-17/+35
2021-09-23add SPE FPU support to powerpc-sfRich Felker8-8/+68
2021-09-11fix undefined behavior in getdelim via null pointer arithmetic and memcpyRich Felker1-3/+5
2021-08-06fix error checking in pthread_getname_npÉrico Nogueira1-1/+1
2021-07-29fix libc-internal signal blocking on mips archsRich Felker1-2/+2
2021-07-06math: fix fmaf not to depend on FE_TOWARDZEROSzabolcs Nagy1-11/+10
2021-06-23fix TZ parsing logic for identifying POSIX-form stringsRich Felker1-1/+13
2021-04-27remove return with expression in void functionMichael Forney1-1/+1
2021-04-20add pthread_getname_np functionÉrico Rolim1-0/+25
2021-04-20fix popen not to leak pipes from one child to anotherRich Felker1-0/+6
2021-04-20remove spurious lock in popenRich Felker1-2/+0
2021-04-16nscd: fall back gracefully on kernels without AF_UNIX supportJoakim Sindholt1-1/+9
2021-04-16mallocng/aligned_alloc: check for malloc failureDominic Chen1-0/+3
2021-04-03make epoll_[p]wait a cancellation pointRich Felker1-2/+2
2021-03-26fix dl_iterate_phdr dlpi_tls_data reporting to match specRich Felker1-1/+2
2021-03-15remove no-longer-needed special case handling in popenRich Felker1-16/+0
2021-03-15use internal malloc for posix_spawn file actions objectsRich Felker1-0/+5
2021-02-13fix error return value for cuseridRich Felker1-2/+3
2021-02-13fix misuse of getpwuid_r in cuseridRich Felker1-1/+2
2021-02-13cuserid: don't return truncated resultsRich Felker1-1/+5
2021-02-13cuserid: support invocation with a null pointer argumentSören Tempel1-0/+2
2021-02-10math: fix expm1f overflow thresholdSzabolcs Nagy1-2/+1
2021-02-10math: fix acoshf for negative inputsSzabolcs Nagy1-4/+4
2021-01-30fix possible fd leak via missing O_CLOEXEC in pthread_setname_npÉrico Rolim1-1/+1
2021-01-30oldmalloc: preserve errno across freeRich Felker1-0/+4
2021-01-30fix build regression in oldmallocRich Felker1-1/+1
2021-01-30preserve errno across freeRich Felker1-2/+10